FbxNode.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  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 FbxNode : FbxObject {
  12. internal FbxNode(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxNode Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxNode_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxNode Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxNode_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxNode GetParent() {
  27. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetParent(swigCPtr);
  28. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  29. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  30. return ret;
  31. }
  32. public bool AddChild(FbxNode pNode) {
  33. bool ret = NativeMethods.FbxNode_AddChild(swigCPtr, FbxNode.getCPtr(pNode));
  34. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  35. return ret;
  36. }
  37. public FbxNode RemoveChild(FbxNode pNode) {
  38. global::System.IntPtr cPtr = NativeMethods.FbxNode_RemoveChild(swigCPtr, FbxNode.getCPtr(pNode));
  39. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  40. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  41. return ret;
  42. }
  43. public int GetChildCount(bool pRecursive) {
  44. int ret = NativeMethods.FbxNode_GetChildCount__SWIG_0(swigCPtr, pRecursive);
  45. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  46. return ret;
  47. }
  48. public int GetChildCount() {
  49. int ret = NativeMethods.FbxNode_GetChildCount__SWIG_1(swigCPtr);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. public FbxNode GetChild(int pIndex) {
  54. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetChild(swigCPtr, pIndex);
  55. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  56. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  57. return ret;
  58. }
  59. public FbxNode FindChild(string pName, bool pRecursive, bool pInitial) {
  60. global::System.IntPtr cPtr = NativeMethods.FbxNode_FindChild__SWIG_0(swigCPtr, pName, pRecursive, pInitial);
  61. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  62. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  63. return ret;
  64. }
  65. public FbxNode FindChild(string pName, bool pRecursive) {
  66. global::System.IntPtr cPtr = NativeMethods.FbxNode_FindChild__SWIG_1(swigCPtr, pName, pRecursive);
  67. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  68. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  69. return ret;
  70. }
  71. public FbxNode FindChild(string pName) {
  72. global::System.IntPtr cPtr = NativeMethods.FbxNode_FindChild__SWIG_2(swigCPtr, pName);
  73. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  74. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  75. return ret;
  76. }
  77. public void SetVisibility(bool pIsVisible) {
  78. NativeMethods.FbxNode_SetVisibility(swigCPtr, pIsVisible);
  79. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  80. }
  81. public bool GetVisibility() {
  82. bool ret = NativeMethods.FbxNode_GetVisibility(swigCPtr);
  83. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  84. return ret;
  85. }
  86. public void SetShadingMode(FbxNode.EShadingMode pShadingMode) {
  87. NativeMethods.FbxNode_SetShadingMode(swigCPtr, (int)pShadingMode);
  88. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  89. }
  90. public FbxNode.EShadingMode GetShadingMode() {
  91. FbxNode.EShadingMode ret = (FbxNode.EShadingMode)NativeMethods.FbxNode_GetShadingMode(swigCPtr);
  92. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  93. return ret;
  94. }
  95. public FbxNodeAttribute SetNodeAttribute(FbxNodeAttribute pNodeAttribute) {
  96. global::System.IntPtr cPtr = NativeMethods.FbxNode_SetNodeAttribute(swigCPtr, FbxNodeAttribute.getCPtr(pNodeAttribute));
  97. FbxNodeAttribute ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNodeAttribute(cPtr, false);
  98. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  99. return ret;
  100. }
  101. public FbxNodeAttribute GetNodeAttribute() {
  102. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetNodeAttribute(swigCPtr);
  103. FbxNodeAttribute ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNodeAttribute(cPtr, false);
  104. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  105. return ret;
  106. }
  107. public FbxSkeleton GetSkeleton() {
  108. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetSkeleton(swigCPtr);
  109. FbxSkeleton ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSkeleton(cPtr, false);
  110. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  111. return ret;
  112. }
  113. public FbxGeometry GetGeometry() {
  114. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetGeometry(swigCPtr);
  115. FbxGeometry ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxGeometry(cPtr, false);
  116. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  117. return ret;
  118. }
  119. public FbxMesh GetMesh() {
  120. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetMesh(swigCPtr);
  121. FbxMesh ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxMesh(cPtr, false);
  122. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  123. return ret;
  124. }
  125. public FbxCamera GetCamera() {
  126. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetCamera(swigCPtr);
  127. FbxCamera ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxCamera(cPtr, false);
  128. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  129. return ret;
  130. }
  131. public FbxLight GetLight() {
  132. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetLight(swigCPtr);
  133. FbxLight ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLight(cPtr, false);
  134. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  135. return ret;
  136. }
  137. public void SetTransformationInheritType(FbxTransform.EInheritType pInheritType) {
  138. NativeMethods.FbxNode_SetTransformationInheritType(swigCPtr, (int)pInheritType);
  139. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  140. }
  141. public void SetPivotState(FbxNode.EPivotSet pPivotSet, FbxNode.EPivotState pPivotState) {
  142. NativeMethods.FbxNode_SetPivotState(swigCPtr, (int)pPivotSet, (int)pPivotState);
  143. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  144. }
  145. public void SetRotationOrder(FbxNode.EPivotSet pPivotSet, FbxEuler.EOrder pRotationOrder) {
  146. NativeMethods.FbxNode_SetRotationOrder(swigCPtr, (int)pPivotSet, (int)pRotationOrder);
  147. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  148. }
  149. public void GetRotationOrder(FbxNode.EPivotSet pPivotSet, out int pRotationOrder) {
  150. NativeMethods.FbxNode_GetRotationOrder(swigCPtr, (int)pPivotSet, out pRotationOrder);
  151. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  152. }
  153. public void SetRotationActive(bool pVal) {
  154. NativeMethods.FbxNode_SetRotationActive(swigCPtr, pVal);
  155. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  156. }
  157. public bool GetRotationActive() {
  158. bool ret = NativeMethods.FbxNode_GetRotationActive(swigCPtr);
  159. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  160. return ret;
  161. }
  162. public void SetRotationOffset(FbxNode.EPivotSet pPivotSet, FbxVector4 pVector) {
  163. NativeMethods.FbxNode_SetRotationOffset(swigCPtr, (int)pPivotSet, pVector);
  164. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  165. }
  166. public FbxVector4 GetRotationOffset(FbxNode.EPivotSet pPivotSet) {
  167. var ret = NativeMethods.FbxNode_GetRotationOffset(swigCPtr, (int)pPivotSet);
  168. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  169. return ret;
  170. }
  171. public void SetRotationPivot(FbxNode.EPivotSet pPivotSet, FbxVector4 pVector) {
  172. NativeMethods.FbxNode_SetRotationPivot(swigCPtr, (int)pPivotSet, pVector);
  173. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  174. }
  175. public FbxVector4 GetRotationPivot(FbxNode.EPivotSet pPivotSet) {
  176. var ret = NativeMethods.FbxNode_GetRotationPivot(swigCPtr, (int)pPivotSet);
  177. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  178. return ret;
  179. }
  180. public void SetPreRotation(FbxNode.EPivotSet pPivotSet, FbxVector4 pVector) {
  181. NativeMethods.FbxNode_SetPreRotation(swigCPtr, (int)pPivotSet, pVector);
  182. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  183. }
  184. public FbxVector4 GetPreRotation(FbxNode.EPivotSet pPivotSet) {
  185. var ret = NativeMethods.FbxNode_GetPreRotation(swigCPtr, (int)pPivotSet);
  186. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  187. return ret;
  188. }
  189. public void SetPostRotation(FbxNode.EPivotSet pPivotSet, FbxVector4 pVector) {
  190. NativeMethods.FbxNode_SetPostRotation(swigCPtr, (int)pPivotSet, pVector);
  191. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  192. }
  193. public FbxVector4 GetPostRotation(FbxNode.EPivotSet pPivotSet) {
  194. var ret = NativeMethods.FbxNode_GetPostRotation(swigCPtr, (int)pPivotSet);
  195. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  196. return ret;
  197. }
  198. public void SetScalingOffset(FbxNode.EPivotSet pPivotSet, FbxVector4 pVector) {
  199. NativeMethods.FbxNode_SetScalingOffset(swigCPtr, (int)pPivotSet, pVector);
  200. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  201. }
  202. public FbxVector4 GetScalingOffset(FbxNode.EPivotSet pPivotSet) {
  203. var ret = NativeMethods.FbxNode_GetScalingOffset(swigCPtr, (int)pPivotSet);
  204. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  205. return ret;
  206. }
  207. public void SetScalingPivot(FbxNode.EPivotSet pPivotSet, FbxVector4 pVector) {
  208. NativeMethods.FbxNode_SetScalingPivot(swigCPtr, (int)pPivotSet, pVector);
  209. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  210. }
  211. public FbxVector4 GetScalingPivot(FbxNode.EPivotSet pPivotSet) {
  212. var ret = NativeMethods.FbxNode_GetScalingPivot(swigCPtr, (int)pPivotSet);
  213. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  214. return ret;
  215. }
  216. public FbxAMatrix EvaluateGlobalTransform(FbxTime pTime, FbxNode.EPivotSet pPivotSet, bool pApplyTarget, bool pForceEval) {
  217. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateGlobalTransform__SWIG_0(swigCPtr, FbxTime.getCPtr(pTime), (int)pPivotSet, pApplyTarget, pForceEval), false);
  218. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  219. return ret;
  220. }
  221. public FbxAMatrix EvaluateGlobalTransform(FbxTime pTime, FbxNode.EPivotSet pPivotSet, bool pApplyTarget) {
  222. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateGlobalTransform__SWIG_1(swigCPtr, FbxTime.getCPtr(pTime), (int)pPivotSet, pApplyTarget), false);
  223. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  224. return ret;
  225. }
  226. public FbxAMatrix EvaluateGlobalTransform(FbxTime pTime, FbxNode.EPivotSet pPivotSet) {
  227. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateGlobalTransform__SWIG_2(swigCPtr, FbxTime.getCPtr(pTime), (int)pPivotSet), false);
  228. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  229. return ret;
  230. }
  231. public FbxAMatrix EvaluateGlobalTransform(FbxTime pTime) {
  232. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateGlobalTransform__SWIG_3(swigCPtr, FbxTime.getCPtr(pTime)), false);
  233. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  234. return ret;
  235. }
  236. public FbxAMatrix EvaluateGlobalTransform() {
  237. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateGlobalTransform__SWIG_4(swigCPtr), false);
  238. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  239. return ret;
  240. }
  241. public FbxAMatrix EvaluateLocalTransform(FbxTime pTime, FbxNode.EPivotSet pPivotSet, bool pApplyTarget, bool pForceEval) {
  242. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateLocalTransform__SWIG_0(swigCPtr, FbxTime.getCPtr(pTime), (int)pPivotSet, pApplyTarget, pForceEval), false);
  243. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  244. return ret;
  245. }
  246. public FbxAMatrix EvaluateLocalTransform(FbxTime pTime, FbxNode.EPivotSet pPivotSet, bool pApplyTarget) {
  247. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateLocalTransform__SWIG_1(swigCPtr, FbxTime.getCPtr(pTime), (int)pPivotSet, pApplyTarget), false);
  248. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  249. return ret;
  250. }
  251. public FbxAMatrix EvaluateLocalTransform(FbxTime pTime, FbxNode.EPivotSet pPivotSet) {
  252. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateLocalTransform__SWIG_2(swigCPtr, FbxTime.getCPtr(pTime), (int)pPivotSet), false);
  253. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  254. return ret;
  255. }
  256. public FbxAMatrix EvaluateLocalTransform(FbxTime pTime) {
  257. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateLocalTransform__SWIG_3(swigCPtr, FbxTime.getCPtr(pTime)), false);
  258. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  259. return ret;
  260. }
  261. public FbxAMatrix EvaluateLocalTransform() {
  262. FbxAMatrix ret = new FbxAMatrix(NativeMethods.FbxNode_EvaluateLocalTransform__SWIG_4(swigCPtr), false);
  263. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  264. return ret;
  265. }
  266. public int AddMaterial(FbxSurfaceMaterial pMaterial) {
  267. int ret = NativeMethods.FbxNode_AddMaterial(swigCPtr, FbxSurfaceMaterial.getCPtr(pMaterial));
  268. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  269. return ret;
  270. }
  271. public FbxSurfaceMaterial GetMaterial(int pIndex) {
  272. global::System.IntPtr cPtr = NativeMethods.FbxNode_GetMaterial(swigCPtr, pIndex);
  273. FbxSurfaceMaterial ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSurfaceMaterial(cPtr, false);
  274. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  275. return ret;
  276. }
  277. public int GetMaterialIndex(string pName) {
  278. int ret = NativeMethods.FbxNode_GetMaterialIndex(swigCPtr, pName);
  279. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  280. return ret;
  281. }
  282. public FbxPropertyDouble3 LclTranslation {
  283. get {
  284. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxNode_LclTranslation_get(swigCPtr), false);
  285. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  286. return ret;
  287. }
  288. }
  289. public FbxPropertyDouble3 LclRotation {
  290. get {
  291. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxNode_LclRotation_get(swigCPtr), false);
  292. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  293. return ret;
  294. }
  295. }
  296. public FbxPropertyDouble3 LclScaling {
  297. get {
  298. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxNode_LclScaling_get(swigCPtr), false);
  299. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  300. return ret;
  301. }
  302. }
  303. public FbxPropertyBool VisibilityInheritance {
  304. get {
  305. FbxPropertyBool ret = new FbxPropertyBool(NativeMethods.FbxNode_VisibilityInheritance_get(swigCPtr), false);
  306. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  307. return ret;
  308. }
  309. }
  310. public FbxPropertyEInheritType InheritType {
  311. get {
  312. FbxPropertyEInheritType ret = new FbxPropertyEInheritType(NativeMethods.FbxNode_InheritType_get(swigCPtr), false);
  313. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  314. return ret;
  315. }
  316. }
  317. public override int GetHashCode(){
  318. return swigCPtr.Handle.GetHashCode();
  319. }
  320. public bool Equals(FbxNode other) {
  321. if (object.ReferenceEquals(other, null)) { return false; }
  322. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  323. }
  324. public override bool Equals(object obj){
  325. if (object.ReferenceEquals(obj, null)) { return false; }
  326. /* is obj a subclass of this type; if so use our Equals */
  327. var typed = obj as FbxNode;
  328. if (!object.ReferenceEquals(typed, null)) {
  329. return this.Equals(typed);
  330. }
  331. /* are we a subclass of the other type; if so use their Equals */
  332. if (typeof(FbxNode).IsSubclassOf(obj.GetType())) {
  333. return obj.Equals(this);
  334. }
  335. /* types are unrelated; can't be a match */
  336. return false;
  337. }
  338. public static bool operator == (FbxNode a, FbxNode b) {
  339. if (object.ReferenceEquals(a, b)) { return true; }
  340. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  341. return a.Equals(b);
  342. }
  343. public static bool operator != (FbxNode a, FbxNode b) {
  344. return !(a == b);
  345. }
  346. public FbxLimits GetTranslationLimits() {
  347. FbxLimits ret = new FbxLimits(NativeMethods.FbxNode_GetTranslationLimits(swigCPtr), false);
  348. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  349. return ret;
  350. }
  351. public FbxLimits GetRotationLimits() {
  352. FbxLimits ret = new FbxLimits(NativeMethods.FbxNode_GetRotationLimits(swigCPtr), false);
  353. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  354. return ret;
  355. }
  356. public FbxLimits GetScalingLimits() {
  357. FbxLimits ret = new FbxLimits(NativeMethods.FbxNode_GetScalingLimits(swigCPtr), false);
  358. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  359. return ret;
  360. }
  361. public enum EShadingMode {
  362. eHardShading,
  363. eWireFrame,
  364. eFlatShading,
  365. eLightShading,
  366. eTextureShading,
  367. eFullShading
  368. }
  369. public enum EPivotSet {
  370. eSourcePivot,
  371. eDestinationPivot
  372. }
  373. public enum EPivotState {
  374. ePivotActive,
  375. ePivotReference
  376. }
  377. }
  378. }