FbxPose.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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 FbxPose : FbxObject {
  12. internal FbxPose(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxPose Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxPose_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxPose ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxPose(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxPose Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxPose_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxPose ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxPose(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public void SetIsBindPose(bool pIsBindPose) {
  27. NativeMethods.FbxPose_SetIsBindPose(swigCPtr, pIsBindPose);
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. }
  30. public bool IsBindPose() {
  31. bool ret = NativeMethods.FbxPose_IsBindPose(swigCPtr);
  32. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  33. return ret;
  34. }
  35. public int GetCount() {
  36. int ret = NativeMethods.FbxPose_GetCount(swigCPtr);
  37. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  38. return ret;
  39. }
  40. public int Add(FbxNode pNode, FbxMatrix pMatrix, bool pLocalMatrix, bool pMultipleBindPose) {
  41. int ret = NativeMethods.FbxPose_Add__SWIG_0(swigCPtr, FbxNode.getCPtr(pNode), FbxMatrix.getCPtr(pMatrix), pLocalMatrix, pMultipleBindPose);
  42. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  43. return ret;
  44. }
  45. public int Add(FbxNode pNode, FbxMatrix pMatrix, bool pLocalMatrix) {
  46. int ret = NativeMethods.FbxPose_Add__SWIG_1(swigCPtr, FbxNode.getCPtr(pNode), FbxMatrix.getCPtr(pMatrix), pLocalMatrix);
  47. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  48. return ret;
  49. }
  50. public int Add(FbxNode pNode, FbxMatrix pMatrix) {
  51. int ret = NativeMethods.FbxPose_Add__SWIG_2(swigCPtr, FbxNode.getCPtr(pNode), FbxMatrix.getCPtr(pMatrix));
  52. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  53. return ret;
  54. }
  55. public FbxNode GetNode(int pIndex) {
  56. global::System.IntPtr cPtr = NativeMethods.FbxPose_GetNode(swigCPtr, pIndex);
  57. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  58. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  59. return ret;
  60. }
  61. public FbxMatrix GetMatrix(int pIndex) {
  62. FbxMatrix ret = new FbxMatrix(NativeMethods.FbxPose_GetMatrix(swigCPtr, pIndex), false);
  63. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  64. return ret;
  65. }
  66. public override int GetHashCode(){
  67. return swigCPtr.Handle.GetHashCode();
  68. }
  69. public bool Equals(FbxPose other) {
  70. if (object.ReferenceEquals(other, null)) { return false; }
  71. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  72. }
  73. public override bool Equals(object obj){
  74. if (object.ReferenceEquals(obj, null)) { return false; }
  75. /* is obj a subclass of this type; if so use our Equals */
  76. var typed = obj as FbxPose;
  77. if (!object.ReferenceEquals(typed, null)) {
  78. return this.Equals(typed);
  79. }
  80. /* are we a subclass of the other type; if so use their Equals */
  81. if (typeof(FbxPose).IsSubclassOf(obj.GetType())) {
  82. return obj.Equals(this);
  83. }
  84. /* types are unrelated; can't be a match */
  85. return false;
  86. }
  87. public static bool operator == (FbxPose a, FbxPose b) {
  88. if (object.ReferenceEquals(a, b)) { return true; }
  89. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  90. return a.Equals(b);
  91. }
  92. public static bool operator != (FbxPose a, FbxPose b) {
  93. return !(a == b);
  94. }
  95. }
  96. }