FbxConstraint.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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 FbxConstraint : FbxObject {
  12. internal FbxConstraint(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxConstraint Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxConstraint_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxConstraint ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxConstraint(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxConstraint Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxConstraint_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxConstraint ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxConstraint(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxPropertyDouble Weight {
  27. get {
  28. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxConstraint_Weight_get(swigCPtr), false);
  29. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  30. return ret;
  31. }
  32. }
  33. public FbxPropertyBool Active {
  34. get {
  35. FbxPropertyBool ret = new FbxPropertyBool(NativeMethods.FbxConstraint_Active_get(swigCPtr), false);
  36. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  37. return ret;
  38. }
  39. }
  40. public FbxPropertyBool Lock {
  41. get {
  42. FbxPropertyBool ret = new FbxPropertyBool(NativeMethods.FbxConstraint_Lock_get(swigCPtr), false);
  43. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  44. return ret;
  45. }
  46. }
  47. public virtual FbxConstraint.EType GetConstraintType() {
  48. FbxConstraint.EType ret = (FbxConstraint.EType)NativeMethods.FbxConstraint_GetConstraintType(swigCPtr);
  49. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  50. return ret;
  51. }
  52. public virtual FbxObject GetConstrainedObject() {
  53. global::System.IntPtr cPtr = NativeMethods.FbxConstraint_GetConstrainedObject(swigCPtr);
  54. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  55. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  56. return ret;
  57. }
  58. public virtual int GetConstraintSourceCount() {
  59. int ret = NativeMethods.FbxConstraint_GetConstraintSourceCount(swigCPtr);
  60. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  61. return ret;
  62. }
  63. public virtual FbxObject GetConstraintSource(int arg0) {
  64. global::System.IntPtr cPtr = NativeMethods.FbxConstraint_GetConstraintSource(swigCPtr, arg0);
  65. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  66. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  67. return ret;
  68. }
  69. public double GetSourceWeight(FbxObject pObject) {
  70. double ret = NativeMethods.FbxConstraint_GetSourceWeight(swigCPtr, FbxObject.getCPtr(pObject));
  71. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  72. return ret;
  73. }
  74. public override int GetHashCode(){
  75. return swigCPtr.Handle.GetHashCode();
  76. }
  77. public bool Equals(FbxConstraint other) {
  78. if (object.ReferenceEquals(other, null)) { return false; }
  79. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  80. }
  81. public override bool Equals(object obj){
  82. if (object.ReferenceEquals(obj, null)) { return false; }
  83. /* is obj a subclass of this type; if so use our Equals */
  84. var typed = obj as FbxConstraint;
  85. if (!object.ReferenceEquals(typed, null)) {
  86. return this.Equals(typed);
  87. }
  88. /* are we a subclass of the other type; if so use their Equals */
  89. if (typeof(FbxConstraint).IsSubclassOf(obj.GetType())) {
  90. return obj.Equals(this);
  91. }
  92. /* types are unrelated; can't be a match */
  93. return false;
  94. }
  95. public static bool operator == (FbxConstraint a, FbxConstraint b) {
  96. if (object.ReferenceEquals(a, b)) { return true; }
  97. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  98. return a.Equals(b);
  99. }
  100. public static bool operator != (FbxConstraint a, FbxConstraint b) {
  101. return !(a == b);
  102. }
  103. public enum EType {
  104. eUnknown,
  105. ePosition,
  106. eRotation,
  107. eScale,
  108. eParent,
  109. eSingleChainIK,
  110. eAim,
  111. eCharacter,
  112. eCustom
  113. }
  114. }
  115. }