FbxNull.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //------------------------------------------------------------------------------
  2. // <auto-generated />
  3. //
  4. // This file was automatically generated by SWIG (http://www.swig.org).
  5. // Version 3.0.12
  6. //
  7. // Do not make changes to this file unless you know what you are doing--modify
  8. // the SWIG interface file instead.
  9. //------------------------------------------------------------------------------
  10. namespace Autodesk.Fbx {
  11. public class FbxNull : FbxNodeAttribute {
  12. internal FbxNull(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxNull Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxNull_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxNull ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNull(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxNull Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxNull_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxNull ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNull(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public void Reset() {
  27. NativeMethods.FbxNull_Reset(swigCPtr);
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. }
  30. public double GetSizeDefaultValue() {
  31. double ret = NativeMethods.FbxNull_GetSizeDefaultValue(swigCPtr);
  32. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  33. return ret;
  34. }
  35. public static string sSize {
  36. get {
  37. string ret = NativeMethods.FbxNull_sSize_get();
  38. return ret;
  39. }
  40. }
  41. public static string sLook {
  42. get {
  43. string ret = NativeMethods.FbxNull_sLook_get();
  44. return ret;
  45. }
  46. }
  47. public static double sDefaultSize {
  48. get {
  49. double ret = NativeMethods.FbxNull_sDefaultSize_get();
  50. return ret;
  51. }
  52. }
  53. public static FbxNull.ELook sDefaultLook {
  54. get {
  55. FbxNull.ELook ret = (FbxNull.ELook)NativeMethods.FbxNull_sDefaultLook_get();
  56. return ret;
  57. }
  58. }
  59. public FbxPropertyDouble Size {
  60. get {
  61. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxNull_Size_get(swigCPtr), false);
  62. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  63. return ret;
  64. }
  65. }
  66. public FbxPropertyNullELook Look {
  67. get {
  68. FbxPropertyNullELook ret = new FbxPropertyNullELook(NativeMethods.FbxNull_Look_get(swigCPtr), false);
  69. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  70. return ret;
  71. }
  72. }
  73. public override int GetHashCode(){
  74. return swigCPtr.Handle.GetHashCode();
  75. }
  76. public bool Equals(FbxNull other) {
  77. if (object.ReferenceEquals(other, null)) { return false; }
  78. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  79. }
  80. public override bool Equals(object obj){
  81. if (object.ReferenceEquals(obj, null)) { return false; }
  82. /* is obj a subclass of this type; if so use our Equals */
  83. var typed = obj as FbxNull;
  84. if (!object.ReferenceEquals(typed, null)) {
  85. return this.Equals(typed);
  86. }
  87. /* are we a subclass of the other type; if so use their Equals */
  88. if (typeof(FbxNull).IsSubclassOf(obj.GetType())) {
  89. return obj.Equals(this);
  90. }
  91. /* types are unrelated; can't be a match */
  92. return false;
  93. }
  94. public static bool operator == (FbxNull a, FbxNull b) {
  95. if (object.ReferenceEquals(a, b)) { return true; }
  96. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  97. return a.Equals(b);
  98. }
  99. public static bool operator != (FbxNull a, FbxNull b) {
  100. return !(a == b);
  101. }
  102. public enum ELook {
  103. eNone,
  104. eCross
  105. }
  106. }
  107. }