FbxMarker.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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 FbxMarker : FbxNodeAttribute {
  12. internal FbxMarker(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxMarker Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxMarker_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxMarker ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxMarker(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxMarker Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxMarker_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxMarker ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxMarker(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public void Reset() {
  27. NativeMethods.FbxMarker_Reset(swigCPtr);
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. }
  30. public void SetMarkerType(FbxMarker.EType pType) {
  31. NativeMethods.FbxMarker_SetMarkerType(swigCPtr, (int)pType);
  32. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  33. }
  34. public FbxMarker.EType GetMarkerType() {
  35. FbxMarker.EType ret = (FbxMarker.EType)NativeMethods.FbxMarker_GetMarkerType(swigCPtr);
  36. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  37. return ret;
  38. }
  39. public double GetDefaultOcclusion() {
  40. double ret = NativeMethods.FbxMarker_GetDefaultOcclusion(swigCPtr);
  41. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  42. return ret;
  43. }
  44. public void SetDefaultOcclusion(double pOcclusion) {
  45. NativeMethods.FbxMarker_SetDefaultOcclusion(swigCPtr, pOcclusion);
  46. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  47. }
  48. public double GetDefaultIKReachTranslation() {
  49. double ret = NativeMethods.FbxMarker_GetDefaultIKReachTranslation(swigCPtr);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. public void SetDefaultIKReachTranslation(double pIKReachTranslation) {
  54. NativeMethods.FbxMarker_SetDefaultIKReachTranslation(swigCPtr, pIKReachTranslation);
  55. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  56. }
  57. public double GetDefaultIKReachRotation() {
  58. double ret = NativeMethods.FbxMarker_GetDefaultIKReachRotation(swigCPtr);
  59. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  60. return ret;
  61. }
  62. public void SetDefaultIKReachRotation(double pIKReachRotation) {
  63. NativeMethods.FbxMarker_SetDefaultIKReachRotation(swigCPtr, pIKReachRotation);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. }
  66. public double GetDefaultIKPull() {
  67. double ret = NativeMethods.FbxMarker_GetDefaultIKPull(swigCPtr);
  68. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  69. return ret;
  70. }
  71. public void SetDefaultIKPull(double pIKPull) {
  72. NativeMethods.FbxMarker_SetDefaultIKPull(swigCPtr, pIKPull);
  73. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  74. }
  75. public double GetDefaultIKPullHips() {
  76. double ret = NativeMethods.FbxMarker_GetDefaultIKPullHips(swigCPtr);
  77. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  78. return ret;
  79. }
  80. public void SetDefaultIKPullHips(double pIKPullHips) {
  81. NativeMethods.FbxMarker_SetDefaultIKPullHips(swigCPtr, pIKPullHips);
  82. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  83. }
  84. public FbxPropertyMarkerELook Look {
  85. get {
  86. FbxPropertyMarkerELook ret = new FbxPropertyMarkerELook(NativeMethods.FbxMarker_Look_get(swigCPtr), false);
  87. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  88. return ret;
  89. }
  90. }
  91. public FbxPropertyBool DrawLink {
  92. get {
  93. FbxPropertyBool ret = new FbxPropertyBool(NativeMethods.FbxMarker_DrawLink_get(swigCPtr), false);
  94. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  95. return ret;
  96. }
  97. }
  98. public FbxPropertyDouble Size {
  99. get {
  100. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxMarker_Size_get(swigCPtr), false);
  101. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  102. return ret;
  103. }
  104. }
  105. public FbxPropertyBool ShowLabel {
  106. get {
  107. FbxPropertyBool ret = new FbxPropertyBool(NativeMethods.FbxMarker_ShowLabel_get(swigCPtr), false);
  108. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  109. return ret;
  110. }
  111. }
  112. public FbxPropertyDouble3 IKPivot {
  113. get {
  114. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxMarker_IKPivot_get(swigCPtr), false);
  115. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  116. return ret;
  117. }
  118. }
  119. public FbxProperty GetOcclusion() {
  120. FbxProperty ret = new FbxProperty(NativeMethods.FbxMarker_GetOcclusion(swigCPtr), true);
  121. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  122. return ret;
  123. }
  124. public FbxProperty GetIKReachTranslation() {
  125. FbxProperty ret = new FbxProperty(NativeMethods.FbxMarker_GetIKReachTranslation(swigCPtr), true);
  126. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  127. return ret;
  128. }
  129. public FbxProperty GetIKReachRotation() {
  130. FbxProperty ret = new FbxProperty(NativeMethods.FbxMarker_GetIKReachRotation(swigCPtr), true);
  131. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  132. return ret;
  133. }
  134. public FbxProperty GetIKPull() {
  135. FbxProperty ret = new FbxProperty(NativeMethods.FbxMarker_GetIKPull(swigCPtr), true);
  136. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  137. return ret;
  138. }
  139. public FbxProperty GetIKPullHips() {
  140. FbxProperty ret = new FbxProperty(NativeMethods.FbxMarker_GetIKPullHips(swigCPtr), true);
  141. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  142. return ret;
  143. }
  144. public override int GetHashCode(){
  145. return swigCPtr.Handle.GetHashCode();
  146. }
  147. public bool Equals(FbxMarker other) {
  148. if (object.ReferenceEquals(other, null)) { return false; }
  149. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  150. }
  151. public override bool Equals(object obj){
  152. if (object.ReferenceEquals(obj, null)) { return false; }
  153. /* is obj a subclass of this type; if so use our Equals */
  154. var typed = obj as FbxMarker;
  155. if (!object.ReferenceEquals(typed, null)) {
  156. return this.Equals(typed);
  157. }
  158. /* are we a subclass of the other type; if so use their Equals */
  159. if (typeof(FbxMarker).IsSubclassOf(obj.GetType())) {
  160. return obj.Equals(this);
  161. }
  162. /* types are unrelated; can't be a match */
  163. return false;
  164. }
  165. public static bool operator == (FbxMarker a, FbxMarker b) {
  166. if (object.ReferenceEquals(a, b)) { return true; }
  167. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  168. return a.Equals(b);
  169. }
  170. public static bool operator != (FbxMarker a, FbxMarker b) {
  171. return !(a == b);
  172. }
  173. public new enum EType {
  174. eStandard,
  175. eOptical,
  176. eEffectorFK,
  177. eEffectorIK
  178. }
  179. public enum ELook {
  180. eCube,
  181. eHardCross,
  182. eLightCross,
  183. eSphere,
  184. eCapsule,
  185. eBox,
  186. eBone,
  187. eCircle,
  188. eSquare,
  189. eStick,
  190. eNone
  191. }
  192. }
  193. }