FbxLayer.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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 FbxLayer : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxLayer(global::System.IntPtr cPtr, bool cMemoryOwn) {
  15. swigCMemOwn = cMemoryOwn;
  16. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  17. }
  18. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxLayer obj) {
  19. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. public virtual void Dispose() {
  22. lock(this) {
  23. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  24. if (swigCMemOwn) {
  25. swigCMemOwn = false;
  26. throw new global::System.MethodAccessException("C++ destructor does not have public access");
  27. }
  28. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  29. }
  30. global::System.GC.SuppressFinalize(this);
  31. }
  32. }
  33. public FbxLayerElementNormal GetNormals() {
  34. global::System.IntPtr cPtr = NativeMethods.FbxLayer_GetNormals(swigCPtr);
  35. FbxLayerElementNormal ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementNormal(cPtr, false);
  36. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  37. return ret;
  38. }
  39. public FbxLayerElementTangent GetTangents() {
  40. global::System.IntPtr cPtr = NativeMethods.FbxLayer_GetTangents(swigCPtr);
  41. FbxLayerElementTangent ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementTangent(cPtr, false);
  42. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  43. return ret;
  44. }
  45. public FbxLayerElementBinormal GetBinormals() {
  46. global::System.IntPtr cPtr = NativeMethods.FbxLayer_GetBinormals(swigCPtr);
  47. FbxLayerElementBinormal ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementBinormal(cPtr, false);
  48. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  49. return ret;
  50. }
  51. public FbxLayerElementMaterial GetMaterials() {
  52. global::System.IntPtr cPtr = NativeMethods.FbxLayer_GetMaterials(swigCPtr);
  53. FbxLayerElementMaterial ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementMaterial(cPtr, false);
  54. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  55. return ret;
  56. }
  57. public FbxLayerElementUV GetUVs(FbxLayerElement.EType pTypeIdentifier) {
  58. global::System.IntPtr cPtr = NativeMethods.FbxLayer_GetUVs__SWIG_0(swigCPtr, (int)pTypeIdentifier);
  59. FbxLayerElementUV ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementUV(cPtr, false);
  60. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  61. return ret;
  62. }
  63. public FbxLayerElementUV GetUVs() {
  64. global::System.IntPtr cPtr = NativeMethods.FbxLayer_GetUVs__SWIG_1(swigCPtr);
  65. FbxLayerElementUV ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementUV(cPtr, false);
  66. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  67. return ret;
  68. }
  69. public FbxLayerElementVertexColor GetVertexColors() {
  70. global::System.IntPtr cPtr = NativeMethods.FbxLayer_GetVertexColors(swigCPtr);
  71. FbxLayerElementVertexColor ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementVertexColor(cPtr, false);
  72. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  73. return ret;
  74. }
  75. public void SetNormals(FbxLayerElementNormal pNormals) {
  76. NativeMethods.FbxLayer_SetNormals(swigCPtr, FbxLayerElementNormal.getCPtr(pNormals));
  77. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  78. }
  79. public void SetBinormals(FbxLayerElementBinormal pBinormals) {
  80. NativeMethods.FbxLayer_SetBinormals(swigCPtr, FbxLayerElementBinormal.getCPtr(pBinormals));
  81. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  82. }
  83. public void SetTangents(FbxLayerElementTangent pTangents) {
  84. NativeMethods.FbxLayer_SetTangents(swigCPtr, FbxLayerElementTangent.getCPtr(pTangents));
  85. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  86. }
  87. public void SetMaterials(FbxLayerElementMaterial pMaterials) {
  88. NativeMethods.FbxLayer_SetMaterials(swigCPtr, FbxLayerElementMaterial.getCPtr(pMaterials));
  89. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  90. }
  91. public void SetUVs(FbxLayerElementUV pUVs, FbxLayerElement.EType pTypeIdentifier) {
  92. NativeMethods.FbxLayer_SetUVs__SWIG_0(swigCPtr, FbxLayerElementUV.getCPtr(pUVs), (int)pTypeIdentifier);
  93. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  94. }
  95. public void SetUVs(FbxLayerElementUV pUVs) {
  96. NativeMethods.FbxLayer_SetUVs__SWIG_1(swigCPtr, FbxLayerElementUV.getCPtr(pUVs));
  97. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  98. }
  99. public void SetVertexColors(FbxLayerElementVertexColor pVertexColors) {
  100. NativeMethods.FbxLayer_SetVertexColors(swigCPtr, FbxLayerElementVertexColor.getCPtr(pVertexColors));
  101. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  102. }
  103. public override int GetHashCode(){
  104. return swigCPtr.Handle.GetHashCode();
  105. }
  106. public bool Equals(FbxLayer other) {
  107. if (object.ReferenceEquals(other, null)) { return false; }
  108. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  109. }
  110. public override bool Equals(object obj){
  111. if (object.ReferenceEquals(obj, null)) { return false; }
  112. /* is obj a subclass of this type; if so use our Equals */
  113. var typed = obj as FbxLayer;
  114. if (!object.ReferenceEquals(typed, null)) {
  115. return this.Equals(typed);
  116. }
  117. /* are we a subclass of the other type; if so use their Equals */
  118. if (typeof(FbxLayer).IsSubclassOf(obj.GetType())) {
  119. return obj.Equals(this);
  120. }
  121. /* types are unrelated; can't be a match */
  122. return false;
  123. }
  124. public static bool operator == (FbxLayer a, FbxLayer b) {
  125. if (object.ReferenceEquals(a, b)) { return true; }
  126. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  127. return a.Equals(b);
  128. }
  129. public static bool operator != (FbxLayer a, FbxLayer b) {
  130. return !(a == b);
  131. }
  132. }
  133. }