FbxAMatrix.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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 FbxAMatrix : FbxDouble4x4 {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. internal FbxAMatrix(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NativeMethods.FbxAMatrix_SWIGUpcast(cPtr), cMemoryOwn) {
  14. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  15. }
  16. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxAMatrix obj) {
  17. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  18. }
  19. ~FbxAMatrix() {
  20. Dispose();
  21. }
  22. public override void Dispose() {
  23. lock(this) {
  24. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  25. if (swigCMemOwn) {
  26. swigCMemOwn = false;
  27. NativeMethods.delete_FbxAMatrix(swigCPtr);
  28. }
  29. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  30. }
  31. global::System.GC.SuppressFinalize(this);
  32. base.Dispose();
  33. }
  34. }
  35. public FbxAMatrix() : this(NativeMethods.new_FbxAMatrix__SWIG_0(), true) {
  36. }
  37. public FbxAMatrix(FbxAMatrix pOther) : this(NativeMethods.new_FbxAMatrix__SWIG_1(FbxAMatrix.getCPtr(pOther)), true) {
  38. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  39. }
  40. public FbxAMatrix(FbxVector4 pT, FbxVector4 pR, FbxVector4 pS) : this(NativeMethods.new_FbxAMatrix__SWIG_2(pT, pR, pS), true) {
  41. }
  42. public double Get(int pY, int pX) {
  43. double ret = NativeMethods.FbxAMatrix_Get(swigCPtr, pY, pX);
  44. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  45. return ret;
  46. }
  47. public FbxVector4 GetT() {
  48. var ret = NativeMethods.FbxAMatrix_GetT(swigCPtr);
  49. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  50. return ret;
  51. }
  52. public FbxVector4 GetR() {
  53. var ret = NativeMethods.FbxAMatrix_GetR(swigCPtr);
  54. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  55. return ret;
  56. }
  57. public FbxQuaternion GetQ() {
  58. FbxQuaternion ret = new FbxQuaternion(NativeMethods.FbxAMatrix_GetQ(swigCPtr), true);
  59. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  60. return ret;
  61. }
  62. public FbxVector4 GetS() {
  63. var ret = NativeMethods.FbxAMatrix_GetS(swigCPtr);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. return ret;
  66. }
  67. public FbxVector4 GetRow(int pY) {
  68. var ret = NativeMethods.FbxAMatrix_GetRow(swigCPtr, pY);
  69. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  70. return ret;
  71. }
  72. public FbxVector4 GetColumn(int pX) {
  73. var ret = NativeMethods.FbxAMatrix_GetColumn(swigCPtr, pX);
  74. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  75. return ret;
  76. }
  77. public void SetIdentity() {
  78. NativeMethods.FbxAMatrix_SetIdentity(swigCPtr);
  79. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  80. }
  81. public void SetT(FbxVector4 pT) {
  82. NativeMethods.FbxAMatrix_SetT(swigCPtr, pT);
  83. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  84. }
  85. public void SetR(FbxVector4 pR) {
  86. NativeMethods.FbxAMatrix_SetR(swigCPtr, pR);
  87. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  88. }
  89. public void SetQ(FbxQuaternion pQ) {
  90. NativeMethods.FbxAMatrix_SetQ(swigCPtr, FbxQuaternion.getCPtr(pQ));
  91. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  92. }
  93. public void SetS(FbxVector4 pS) {
  94. NativeMethods.FbxAMatrix_SetS(swigCPtr, pS);
  95. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  96. }
  97. public void SetTRS(FbxVector4 pT, FbxVector4 pR, FbxVector4 pS) {
  98. NativeMethods.FbxAMatrix_SetTRS(swigCPtr, pT, pR, pS);
  99. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  100. }
  101. public void SetTQS(FbxVector4 pT, FbxQuaternion pQ, FbxVector4 pS) {
  102. NativeMethods.FbxAMatrix_SetTQS(swigCPtr, pT, FbxQuaternion.getCPtr(pQ), pS);
  103. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  104. }
  105. private FbxAMatrix operator_Scale(double pValue) {
  106. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxAMatrix_operator_Scale(swigCPtr, pValue), true);
  107. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  108. return ret;
  109. }
  110. private FbxAMatrix operator_InvScale(double pValue) {
  111. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxAMatrix_operator_InvScale(swigCPtr, pValue), true);
  112. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  113. return ret;
  114. }
  115. public FbxVector4 MultT(FbxVector4 pVector4) {
  116. var ret = NativeMethods.FbxAMatrix_MultT(swigCPtr, pVector4);
  117. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  118. return ret;
  119. }
  120. public FbxVector4 MultR(FbxVector4 pVector4) {
  121. var ret = NativeMethods.FbxAMatrix_MultR(swigCPtr, pVector4);
  122. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  123. return ret;
  124. }
  125. public FbxQuaternion MultQ(FbxQuaternion pQuaternion) {
  126. FbxQuaternion ret = new FbxQuaternion(NativeMethods.FbxAMatrix_MultQ(swigCPtr, FbxQuaternion.getCPtr(pQuaternion)), true);
  127. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  128. return ret;
  129. }
  130. public FbxVector4 MultS(FbxVector4 pVector4) {
  131. var ret = NativeMethods.FbxAMatrix_MultS(swigCPtr, pVector4);
  132. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  133. return ret;
  134. }
  135. private FbxAMatrix operator_Negate() {
  136. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxAMatrix_operator_Negate(swigCPtr), true);
  137. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  138. return ret;
  139. }
  140. private FbxAMatrix operator_Mul(FbxAMatrix pOther) {
  141. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxAMatrix_operator_Mul(swigCPtr, FbxAMatrix.getCPtr(pOther)), true);
  142. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  143. return ret;
  144. }
  145. public FbxAMatrix Inverse() {
  146. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxAMatrix_Inverse(swigCPtr), true);
  147. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  148. return ret;
  149. }
  150. public FbxAMatrix Transpose() {
  151. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxAMatrix_Transpose(swigCPtr), true);
  152. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  153. return ret;
  154. }
  155. public FbxAMatrix Slerp(FbxAMatrix pOther, double pWeight) {
  156. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxAMatrix_Slerp(swigCPtr, FbxAMatrix.getCPtr(pOther), pWeight), true);
  157. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  158. return ret;
  159. }
  160. private bool _equals(FbxAMatrix pOther) {
  161. bool ret = NativeMethods.FbxAMatrix__equals(swigCPtr, FbxAMatrix.getCPtr(pOther));
  162. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  163. return ret;
  164. }
  165. public bool IsIdentity(double pThreshold) {
  166. bool ret = NativeMethods.FbxAMatrix_IsIdentity__SWIG_0(swigCPtr, pThreshold);
  167. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  168. return ret;
  169. }
  170. public bool IsIdentity() {
  171. bool ret = NativeMethods.FbxAMatrix_IsIdentity__SWIG_1(swigCPtr);
  172. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  173. return ret;
  174. }
  175. public static FbxAMatrix operator - (FbxAMatrix a) {
  176. return a.operator_Negate();
  177. }
  178. public static FbxAMatrix operator * (FbxAMatrix a, double b) {
  179. return a.operator_Scale(b);
  180. }
  181. public static FbxAMatrix operator * (double a, FbxAMatrix b) {
  182. return b.operator_Scale(a);
  183. }
  184. public static FbxAMatrix operator / (FbxAMatrix a, double b) {
  185. return a.operator_InvScale(b);
  186. }
  187. public static FbxAMatrix operator * (FbxAMatrix a, FbxAMatrix b) {
  188. return a.operator_Mul(b);
  189. }
  190. public bool Equals(FbxAMatrix other) {
  191. if (object.ReferenceEquals(other, null)) { return false; }
  192. return _equals(other);
  193. }
  194. public override bool Equals(object obj){
  195. if (object.ReferenceEquals(obj, null)) { return false; }
  196. /* is obj a subclass of this type; if so use our Equals */
  197. var typed = obj as FbxAMatrix;
  198. if (!object.ReferenceEquals(typed, null)) {
  199. return this.Equals(typed);
  200. }
  201. /* are we a subclass of the other type; if so use their Equals */
  202. if (typeof(FbxAMatrix).IsSubclassOf(obj.GetType())) {
  203. return obj.Equals(this);
  204. }
  205. /* types are unrelated; can't be a match */
  206. return false;
  207. }
  208. public static bool operator == (FbxAMatrix a, FbxAMatrix b) {
  209. if (object.ReferenceEquals(a, b)) { return true; }
  210. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  211. return a.Equals(b);
  212. }
  213. public static bool operator != (FbxAMatrix a, FbxAMatrix b) {
  214. return !(a == b);
  215. }
  216. public override int GetHashCode() {
  217. int ret = NativeMethods.FbxAMatrix_GetHashCode(swigCPtr);
  218. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  219. return ret;
  220. }
  221. }
  222. }