FbxGeometryBase.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 FbxGeometryBase : FbxLayerContainer {
  12. internal FbxGeometryBase(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxGeometryBase Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxGeometryBase_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxGeometryBase ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxGeometryBase(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxGeometryBase Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxGeometryBase_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxGeometryBase ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxGeometryBase(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public virtual void InitControlPoints(int pCount) {
  27. NativeMethods.FbxGeometryBase_InitControlPoints(swigCPtr, pCount);
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. }
  30. public virtual int GetControlPointsCount() {
  31. int ret = NativeMethods.FbxGeometryBase_GetControlPointsCount(swigCPtr);
  32. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  33. return ret;
  34. }
  35. public FbxLayerElementNormal CreateElementNormal() {
  36. global::System.IntPtr cPtr = NativeMethods.FbxGeometryBase_CreateElementNormal(swigCPtr);
  37. FbxLayerElementNormal ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementNormal(cPtr, false);
  38. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  39. return ret;
  40. }
  41. public FbxLayerElementTangent CreateElementTangent() {
  42. global::System.IntPtr cPtr = NativeMethods.FbxGeometryBase_CreateElementTangent(swigCPtr);
  43. FbxLayerElementTangent ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxLayerElementTangent(cPtr, false);
  44. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  45. return ret;
  46. }
  47. public override int GetHashCode(){
  48. return swigCPtr.Handle.GetHashCode();
  49. }
  50. public bool Equals(FbxGeometryBase other) {
  51. if (object.ReferenceEquals(other, null)) { return false; }
  52. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  53. }
  54. public override bool Equals(object obj){
  55. if (object.ReferenceEquals(obj, null)) { return false; }
  56. /* is obj a subclass of this type; if so use our Equals */
  57. var typed = obj as FbxGeometryBase;
  58. if (!object.ReferenceEquals(typed, null)) {
  59. return this.Equals(typed);
  60. }
  61. /* are we a subclass of the other type; if so use their Equals */
  62. if (typeof(FbxGeometryBase).IsSubclassOf(obj.GetType())) {
  63. return obj.Equals(this);
  64. }
  65. /* types are unrelated; can't be a match */
  66. return false;
  67. }
  68. public static bool operator == (FbxGeometryBase a, FbxGeometryBase b) {
  69. if (object.ReferenceEquals(a, b)) { return true; }
  70. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  71. return a.Equals(b);
  72. }
  73. public static bool operator != (FbxGeometryBase a, FbxGeometryBase b) {
  74. return !(a == b);
  75. }
  76. public void SetControlPointAt(FbxVector4 pCtrlPoint, int pIndex) {
  77. NativeMethods.FbxGeometryBase_SetControlPointAt(swigCPtr, pCtrlPoint, pIndex);
  78. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  79. }
  80. public FbxVector4 GetControlPointAt(int pIndex) {
  81. var ret = NativeMethods.FbxGeometryBase_GetControlPointAt(swigCPtr, pIndex);
  82. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  83. return ret;
  84. }
  85. }
  86. }