FbxDouble4x4.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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 FbxDouble4x4 : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxDouble4x4(global::System.IntPtr cPtr, bool cMemoryOwn) {
  15. swigCMemOwn = cMemoryOwn;
  16. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  17. }
  18. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxDouble4x4 obj) {
  19. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~FbxDouble4x4() {
  22. Dispose();
  23. }
  24. public virtual void Dispose() {
  25. lock(this) {
  26. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  27. if (swigCMemOwn) {
  28. swigCMemOwn = false;
  29. NativeMethods.delete_FbxDouble4x4(swigCPtr);
  30. }
  31. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  32. }
  33. global::System.GC.SuppressFinalize(this);
  34. }
  35. }
  36. public FbxDouble4x4() : this(NativeMethods.new_FbxDouble4x4__SWIG_0(), true) {
  37. }
  38. public FbxDouble4x4(FbxDouble4 pValue) : this(NativeMethods.new_FbxDouble4x4__SWIG_1(pValue), true) {
  39. }
  40. public FbxDouble4x4(FbxDouble4 pData0, FbxDouble4 pData1, FbxDouble4 pData2, FbxDouble4 pData3) : this(NativeMethods.new_FbxDouble4x4__SWIG_2(pData0, pData1, pData2, pData3), true) {
  41. }
  42. private bool _equals(FbxDouble4x4 pVector) {
  43. bool ret = NativeMethods.FbxDouble4x4__equals(swigCPtr, FbxDouble4x4.getCPtr(pVector));
  44. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  45. return ret;
  46. }
  47. public FbxDouble4x4(FbxDouble4x4 other) : this(NativeMethods.new_FbxDouble4x4__SWIG_3(FbxDouble4x4.getCPtr(other)), true) {
  48. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  49. }
  50. public bool Equals(FbxDouble4x4 other) {
  51. if (object.ReferenceEquals(other, null)) { return false; }
  52. return _equals(other);
  53. }
  54. public override bool Equals(object obj){
  55. if (object.ReferenceEquals(obj, null)) { return false; }
  56. /* is obj a subclass of this type; if so use our Equals */
  57. var typed = obj as FbxDouble4x4;
  58. if (!object.ReferenceEquals(typed, null)) {
  59. return this.Equals(typed);
  60. }
  61. /* are we a subclass of the other type; if so use their Equals */
  62. if (typeof(FbxDouble4x4).IsSubclassOf(obj.GetType())) {
  63. return obj.Equals(this);
  64. }
  65. /* types are unrelated; can't be a match */
  66. return false;
  67. }
  68. public static bool operator == (FbxDouble4x4 a, FbxDouble4x4 b) {
  69. if (object.ReferenceEquals(a, b)) { return true; }
  70. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  71. return a.Equals(b);
  72. }
  73. public static bool operator != (FbxDouble4x4 a, FbxDouble4x4 b) {
  74. return !(a == b);
  75. }
  76. public override int GetHashCode() {
  77. uint hash = 0;
  78. for(int i = 0; i < 4; ++i) {
  79. hash = (hash << (32 / 4)) | (hash >> (32 - (32 / 4)));
  80. hash ^= (uint)this[i].GetHashCode();
  81. }
  82. return (int)hash;
  83. }
  84. public override string ToString() {
  85. var builder = new System.Text.StringBuilder("FbxDouble4x4(");
  86. for(int i = 0; i < 4; ++i) {
  87. builder.Append(this[i].ToString());
  88. builder.Append(',');
  89. }
  90. builder.Replace(',', ')', builder.Length - 1, 1);
  91. return builder.ToString();
  92. }
  93. private FbxDouble4 _get(int i) {
  94. var ret = NativeMethods.FbxDouble4x4__get(swigCPtr, i);
  95. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  96. return ret;
  97. }
  98. private void _set(int i, FbxDouble4 v) {
  99. NativeMethods.FbxDouble4x4__set(swigCPtr, i, v);
  100. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  101. }
  102. public FbxDouble4 this[int index] {
  103. get {
  104. if (index < 0 || index >= 4) {
  105. throw new System.ArgumentOutOfRangeException("index");
  106. } else {
  107. return this._get(index);
  108. }
  109. }
  110. set {
  111. if (index < 0 || index >= 4) {
  112. throw new System.ArgumentOutOfRangeException("index");
  113. } else {
  114. this._set(index, value);
  115. }
  116. }
  117. }
  118. public FbxDouble4 X {
  119. get { return this._get(0); }
  120. set { this._set(0, value); }
  121. }
  122. public FbxDouble4 Y {
  123. get { return this._get(1); }
  124. set { this._set(1, value); }
  125. }
  126. public FbxDouble4 Z {
  127. get { return this._get(2); }
  128. set { this._set(2, value); }
  129. }
  130. public FbxDouble4 W {
  131. get { return this._get(3); }
  132. set { this._set(3, value); }
  133. }
  134. }
  135. }