FbxBlendShape.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 FbxBlendShape : FbxDeformer {
  12. internal FbxBlendShape(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxBlendShape Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxBlendShape_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxBlendShape ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxBlendShape(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxBlendShape Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxBlendShape_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxBlendShape ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxBlendShape(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public bool SetGeometry(FbxGeometry pGeometry) {
  27. bool ret = NativeMethods.FbxBlendShape_SetGeometry(swigCPtr, FbxGeometry.getCPtr(pGeometry));
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. return ret;
  30. }
  31. public FbxGeometry GetGeometry() {
  32. global::System.IntPtr cPtr = NativeMethods.FbxBlendShape_GetGeometry(swigCPtr);
  33. FbxGeometry ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxGeometry(cPtr, false);
  34. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  35. return ret;
  36. }
  37. public bool AddBlendShapeChannel(FbxBlendShapeChannel pBlendShapeChannel) {
  38. bool ret = NativeMethods.FbxBlendShape_AddBlendShapeChannel(swigCPtr, FbxBlendShapeChannel.getCPtr(pBlendShapeChannel));
  39. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  40. return ret;
  41. }
  42. public FbxBlendShapeChannel RemoveBlendShapeChannel(FbxBlendShapeChannel pBlendShapeChannel) {
  43. global::System.IntPtr cPtr = NativeMethods.FbxBlendShape_RemoveBlendShapeChannel(swigCPtr, FbxBlendShapeChannel.getCPtr(pBlendShapeChannel));
  44. FbxBlendShapeChannel ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxBlendShapeChannel(cPtr, false);
  45. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  46. return ret;
  47. }
  48. public int GetBlendShapeChannelCount() {
  49. int ret = NativeMethods.FbxBlendShape_GetBlendShapeChannelCount(swigCPtr);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. public FbxBlendShapeChannel GetBlendShapeChannel(int pIndex) {
  54. global::System.IntPtr cPtr = NativeMethods.FbxBlendShape_GetBlendShapeChannel(swigCPtr, pIndex);
  55. FbxBlendShapeChannel ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxBlendShapeChannel(cPtr, false);
  56. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  57. return ret;
  58. }
  59. public override int GetHashCode(){
  60. return swigCPtr.Handle.GetHashCode();
  61. }
  62. public bool Equals(FbxBlendShape other) {
  63. if (object.ReferenceEquals(other, null)) { return false; }
  64. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  65. }
  66. public override bool Equals(object obj){
  67. if (object.ReferenceEquals(obj, null)) { return false; }
  68. /* is obj a subclass of this type; if so use our Equals */
  69. var typed = obj as FbxBlendShape;
  70. if (!object.ReferenceEquals(typed, null)) {
  71. return this.Equals(typed);
  72. }
  73. /* are we a subclass of the other type; if so use their Equals */
  74. if (typeof(FbxBlendShape).IsSubclassOf(obj.GetType())) {
  75. return obj.Equals(this);
  76. }
  77. /* types are unrelated; can't be a match */
  78. return false;
  79. }
  80. public static bool operator == (FbxBlendShape a, FbxBlendShape b) {
  81. if (object.ReferenceEquals(a, b)) { return true; }
  82. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  83. return a.Equals(b);
  84. }
  85. public static bool operator != (FbxBlendShape a, FbxBlendShape b) {
  86. return !(a == b);
  87. }
  88. }
  89. }