FbxNodeAttribute.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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 FbxNodeAttribute : FbxObject {
  12. internal FbxNodeAttribute(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxNodeAttribute Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxNodeAttribute_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxNodeAttribute ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNodeAttribute(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxNodeAttribute Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxNodeAttribute_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxNodeAttribute ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNodeAttribute(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public static string sColor {
  27. get {
  28. string ret = NativeMethods.FbxNodeAttribute_sColor_get();
  29. return ret;
  30. }
  31. }
  32. public static FbxDouble3 sDefaultColor {
  33. get {
  34. var ret = NativeMethods.FbxNodeAttribute_sDefaultColor_get();
  35. return ret;
  36. }
  37. }
  38. public FbxPropertyDouble3 Color {
  39. get {
  40. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxNodeAttribute_Color_get(swigCPtr), false);
  41. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  42. return ret;
  43. }
  44. }
  45. public virtual FbxNodeAttribute.EType GetAttributeType() {
  46. FbxNodeAttribute.EType ret = (FbxNodeAttribute.EType)NativeMethods.FbxNodeAttribute_GetAttributeType(swigCPtr);
  47. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  48. return ret;
  49. }
  50. public int GetNodeCount() {
  51. int ret = NativeMethods.FbxNodeAttribute_GetNodeCount(swigCPtr);
  52. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  53. return ret;
  54. }
  55. public FbxNode GetNode(int pIndex) {
  56. global::System.IntPtr cPtr = NativeMethods.FbxNodeAttribute_GetNode__SWIG_0(swigCPtr, pIndex);
  57. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  58. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  59. return ret;
  60. }
  61. public FbxNode GetNode() {
  62. global::System.IntPtr cPtr = NativeMethods.FbxNodeAttribute_GetNode__SWIG_1(swigCPtr);
  63. FbxNode ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxNode(cPtr, false);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. return ret;
  66. }
  67. public override int GetHashCode(){
  68. return swigCPtr.Handle.GetHashCode();
  69. }
  70. public bool Equals(FbxNodeAttribute other) {
  71. if (object.ReferenceEquals(other, null)) { return false; }
  72. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  73. }
  74. public override bool Equals(object obj){
  75. if (object.ReferenceEquals(obj, null)) { return false; }
  76. /* is obj a subclass of this type; if so use our Equals */
  77. var typed = obj as FbxNodeAttribute;
  78. if (!object.ReferenceEquals(typed, null)) {
  79. return this.Equals(typed);
  80. }
  81. /* are we a subclass of the other type; if so use their Equals */
  82. if (typeof(FbxNodeAttribute).IsSubclassOf(obj.GetType())) {
  83. return obj.Equals(this);
  84. }
  85. /* types are unrelated; can't be a match */
  86. return false;
  87. }
  88. public static bool operator == (FbxNodeAttribute a, FbxNodeAttribute b) {
  89. if (object.ReferenceEquals(a, b)) { return true; }
  90. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  91. return a.Equals(b);
  92. }
  93. public static bool operator != (FbxNodeAttribute a, FbxNodeAttribute b) {
  94. return !(a == b);
  95. }
  96. public enum EType {
  97. eUnknown,
  98. eNull,
  99. eMarker,
  100. eSkeleton,
  101. eMesh,
  102. eNurbs,
  103. ePatch,
  104. eCamera,
  105. eCameraStereo,
  106. eCameraSwitcher,
  107. eLight,
  108. eOpticalReference,
  109. eOpticalMarker,
  110. eNurbsCurve,
  111. eTrimNurbsSurface,
  112. eBoundary,
  113. eNurbsSurface,
  114. eShape,
  115. eLODGroup,
  116. eSubDiv,
  117. eCachedEffect,
  118. eLine
  119. }
  120. }
  121. }