FbxLayerElementTangent.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 FbxLayerElementTangent : FbxLayerElementTemplateFbxVector4 {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. internal FbxLayerElementTangent(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NativeMethods.FbxLayerElementTangent_SWIGUpcast(cPtr), cMemoryOwn) {
  14. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  15. }
  16. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxLayerElementTangent obj) {
  17. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  18. }
  19. public override void Dispose() {
  20. lock(this) {
  21. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  22. if (swigCMemOwn) {
  23. swigCMemOwn = false;
  24. throw new global::System.MethodAccessException("C++ destructor does not have public access");
  25. }
  26. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  27. }
  28. global::System.GC.SuppressFinalize(this);
  29. base.Dispose();
  30. }
  31. }
  32. public static FbxLayerElementTangent Create(FbxLayerContainer pOwner, string pName) {
  33. global::System.IntPtr cPtr = NativeMethods.FbxLayerElementTangent_Create(FbxLayerContainer.getCPtr(pOwner), pName);
  34. FbxLayerElementTangent ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementTangent(cPtr, false);
  35. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  36. return ret;
  37. }
  38. }
  39. }