FbxScene.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 FbxScene : FbxDocument {
  12. internal FbxScene(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxScene Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxScene_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxScene ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxScene(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxScene Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxScene_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxScene ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxScene(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxNode GetRootNode() {
  27. global::System.IntPtr cPtr = NativeMethods.FbxScene_GetRootNode(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 FbxPose GetPose(int pIndex) {
  33. global::System.IntPtr cPtr = NativeMethods.FbxScene_GetPose(swigCPtr, pIndex);
  34. FbxPose ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxPose(cPtr, false);
  35. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  36. return ret;
  37. }
  38. public bool AddPose(FbxPose pPose) {
  39. bool ret = NativeMethods.FbxScene_AddPose(swigCPtr, FbxPose.getCPtr(pPose));
  40. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  41. return ret;
  42. }
  43. public FbxDocumentInfo GetSceneInfo() {
  44. global::System.IntPtr cPtr = NativeMethods.FbxScene_GetSceneInfo(swigCPtr);
  45. FbxDocumentInfo ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxDocumentInfo(cPtr, false);
  46. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  47. return ret;
  48. }
  49. public void SetSceneInfo(FbxDocumentInfo pSceneInfo) {
  50. NativeMethods.FbxScene_SetSceneInfo(swigCPtr, FbxDocumentInfo.getCPtr(pSceneInfo));
  51. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  52. }
  53. public FbxGlobalSettings GetGlobalSettings() {
  54. FbxGlobalSettings ret = new FbxGlobalSettings(NativeMethods.FbxScene_GetGlobalSettings(swigCPtr), false);
  55. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  56. return ret;
  57. }
  58. public void SetCurrentAnimationStack(FbxAnimStack pAnimStack) {
  59. NativeMethods.FbxScene_SetCurrentAnimationStack(swigCPtr, FbxAnimStack.getCPtr(pAnimStack));
  60. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  61. }
  62. public FbxAnimStack GetCurrentAnimationStack() {
  63. global::System.IntPtr cPtr = NativeMethods.FbxScene_GetCurrentAnimationStack(swigCPtr);
  64. FbxAnimStack ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxAnimStack(cPtr, false);
  65. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  66. return ret;
  67. }
  68. public int GetNodeCount() {
  69. int ret = NativeMethods.FbxScene_GetNodeCount(swigCPtr);
  70. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  71. return ret;
  72. }
  73. public override int GetHashCode(){
  74. return swigCPtr.Handle.GetHashCode();
  75. }
  76. public bool Equals(FbxScene other) {
  77. if (object.ReferenceEquals(other, null)) { return false; }
  78. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  79. }
  80. public override bool Equals(object obj){
  81. if (object.ReferenceEquals(obj, null)) { return false; }
  82. /* is obj a subclass of this type; if so use our Equals */
  83. var typed = obj as FbxScene;
  84. if (!object.ReferenceEquals(typed, null)) {
  85. return this.Equals(typed);
  86. }
  87. /* are we a subclass of the other type; if so use their Equals */
  88. if (typeof(FbxScene).IsSubclassOf(obj.GetType())) {
  89. return obj.Equals(this);
  90. }
  91. /* types are unrelated; can't be a match */
  92. return false;
  93. }
  94. public static bool operator == (FbxScene a, FbxScene b) {
  95. if (object.ReferenceEquals(a, b)) { return true; }
  96. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  97. return a.Equals(b);
  98. }
  99. public static bool operator != (FbxScene a, FbxScene b) {
  100. return !(a == b);
  101. }
  102. }
  103. }