FbxLayerElement.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 FbxLayerElement : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxLayerElement(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(FbxLayerElement 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 void SetMappingMode(FbxLayerElement.EMappingMode pMappingMode) {
  34. NativeMethods.FbxLayerElement_SetMappingMode(swigCPtr, (int)pMappingMode);
  35. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  36. }
  37. public void SetReferenceMode(FbxLayerElement.EReferenceMode pReferenceMode) {
  38. NativeMethods.FbxLayerElement_SetReferenceMode(swigCPtr, (int)pReferenceMode);
  39. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  40. }
  41. public FbxLayerElement.EMappingMode GetMappingMode() {
  42. FbxLayerElement.EMappingMode ret = (FbxLayerElement.EMappingMode)NativeMethods.FbxLayerElement_GetMappingMode(swigCPtr);
  43. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  44. return ret;
  45. }
  46. public FbxLayerElement.EReferenceMode GetReferenceMode() {
  47. FbxLayerElement.EReferenceMode ret = (FbxLayerElement.EReferenceMode)NativeMethods.FbxLayerElement_GetReferenceMode(swigCPtr);
  48. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  49. return ret;
  50. }
  51. public enum EType {
  52. eUnknown,
  53. eNormal,
  54. eBiNormal,
  55. eTangent,
  56. eMaterial,
  57. ePolygonGroup,
  58. eUV,
  59. eVertexColor,
  60. eSmoothing,
  61. eVertexCrease,
  62. eEdgeCrease,
  63. eHole,
  64. eUserData,
  65. eVisibility,
  66. eTextureDiffuse,
  67. eTextureDiffuseFactor,
  68. eTextureEmissive,
  69. eTextureEmissiveFactor,
  70. eTextureAmbient,
  71. eTextureAmbientFactor,
  72. eTextureSpecular,
  73. eTextureSpecularFactor,
  74. eTextureShininess,
  75. eTextureNormalMap,
  76. eTextureBump,
  77. eTextureTransparency,
  78. eTextureTransparencyFactor,
  79. eTextureReflection,
  80. eTextureReflectionFactor,
  81. eTextureDisplacement,
  82. eTextureDisplacementVector,
  83. eTypeCount
  84. }
  85. public enum EMappingMode {
  86. eNone,
  87. eByControlPoint,
  88. eByPolygonVertex,
  89. eByPolygon,
  90. eByEdge,
  91. eAllSame
  92. }
  93. public enum EReferenceMode {
  94. eDirect,
  95. eIndex,
  96. eIndexToDirect
  97. }
  98. }
  99. }