FbxCluster.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 FbxCluster : FbxSubDeformer {
  12. internal FbxCluster(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxCluster Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxCluster_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxCluster ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxCluster(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxCluster Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxCluster_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxCluster ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxCluster(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public void SetLinkMode(FbxCluster.ELinkMode pMode) {
  27. NativeMethods.FbxCluster_SetLinkMode(swigCPtr, (int)pMode);
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. }
  30. public FbxCluster.ELinkMode GetLinkMode() {
  31. FbxCluster.ELinkMode ret = (FbxCluster.ELinkMode)NativeMethods.FbxCluster_GetLinkMode(swigCPtr);
  32. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  33. return ret;
  34. }
  35. public void SetLink(FbxNode pNode) {
  36. NativeMethods.FbxCluster_SetLink(swigCPtr, FbxNode.getCPtr(pNode));
  37. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  38. }
  39. public FbxNode GetLink() {
  40. global::System.IntPtr cPtr = NativeMethods.FbxCluster_GetLink(swigCPtr);
  41. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  42. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  43. return ret;
  44. }
  45. public void AddControlPointIndex(int pIndex, double pWeight) {
  46. NativeMethods.FbxCluster_AddControlPointIndex(swigCPtr, pIndex, pWeight);
  47. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  48. }
  49. public int GetControlPointIndicesCount() {
  50. int ret = NativeMethods.FbxCluster_GetControlPointIndicesCount(swigCPtr);
  51. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  52. return ret;
  53. }
  54. public void SetControlPointIWCount(int pCount) {
  55. NativeMethods.FbxCluster_SetControlPointIWCount(swigCPtr, pCount);
  56. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  57. }
  58. public void SetTransformMatrix(FbxAMatrix pMatrix) {
  59. NativeMethods.FbxCluster_SetTransformMatrix(swigCPtr, FbxAMatrix.getCPtr(pMatrix));
  60. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  61. }
  62. public FbxAMatrix GetTransformMatrix(FbxAMatrix pMatrix) {
  63. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxCluster_GetTransformMatrix(swigCPtr, FbxAMatrix.getCPtr(pMatrix)), false);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. return ret;
  66. }
  67. public void SetTransformLinkMatrix(FbxAMatrix pMatrix) {
  68. NativeMethods.FbxCluster_SetTransformLinkMatrix(swigCPtr, FbxAMatrix.getCPtr(pMatrix));
  69. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  70. }
  71. public FbxAMatrix GetTransformLinkMatrix(FbxAMatrix pMatrix) {
  72. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxCluster_GetTransformLinkMatrix(swigCPtr, FbxAMatrix.getCPtr(pMatrix)), false);
  73. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  74. return ret;
  75. }
  76. public override int GetHashCode(){
  77. return swigCPtr.Handle.GetHashCode();
  78. }
  79. public bool Equals(FbxCluster other) {
  80. if (object.ReferenceEquals(other, null)) { return false; }
  81. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  82. }
  83. public override bool Equals(object obj){
  84. if (object.ReferenceEquals(obj, null)) { return false; }
  85. /* is obj a subclass of this type; if so use our Equals */
  86. var typed = obj as FbxCluster;
  87. if (!object.ReferenceEquals(typed, null)) {
  88. return this.Equals(typed);
  89. }
  90. /* are we a subclass of the other type; if so use their Equals */
  91. if (typeof(FbxCluster).IsSubclassOf(obj.GetType())) {
  92. return obj.Equals(this);
  93. }
  94. /* types are unrelated; can't be a match */
  95. return false;
  96. }
  97. public static bool operator == (FbxCluster a, FbxCluster b) {
  98. if (object.ReferenceEquals(a, b)) { return true; }
  99. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  100. return a.Equals(b);
  101. }
  102. public static bool operator != (FbxCluster a, FbxCluster b) {
  103. return !(a == b);
  104. }
  105. public int GetControlPointIndexAt(int index) {
  106. int ret = NativeMethods.FbxCluster_GetControlPointIndexAt(swigCPtr, index);
  107. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  108. return ret;
  109. }
  110. public double GetControlPointWeightAt(int index) {
  111. double ret = NativeMethods.FbxCluster_GetControlPointWeightAt(swigCPtr, index);
  112. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  113. return ret;
  114. }
  115. public enum ELinkMode {
  116. eNormalize,
  117. eAdditive,
  118. eTotalOne
  119. }
  120. }
  121. }