FbxSkin.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 FbxSkin : FbxDeformer {
  12. internal FbxSkin(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxSkin Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxSkin_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxSkin ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSkin(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxSkin Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxSkin_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxSkin ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSkin(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public bool AddCluster(FbxCluster pCluster) {
  27. bool ret = NativeMethods.FbxSkin_AddCluster(swigCPtr, FbxCluster.getCPtr(pCluster));
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. return ret;
  30. }
  31. public FbxCluster GetCluster(int pIndex) {
  32. global::System.IntPtr cPtr = NativeMethods.FbxSkin_GetCluster(swigCPtr, pIndex);
  33. FbxCluster ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxCluster(cPtr, false);
  34. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  35. return ret;
  36. }
  37. public override int GetHashCode(){
  38. return swigCPtr.Handle.GetHashCode();
  39. }
  40. public bool Equals(FbxSkin other) {
  41. if (object.ReferenceEquals(other, null)) { return false; }
  42. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  43. }
  44. public override bool Equals(object obj){
  45. if (object.ReferenceEquals(obj, null)) { return false; }
  46. /* is obj a subclass of this type; if so use our Equals */
  47. var typed = obj as FbxSkin;
  48. if (!object.ReferenceEquals(typed, null)) {
  49. return this.Equals(typed);
  50. }
  51. /* are we a subclass of the other type; if so use their Equals */
  52. if (typeof(FbxSkin).IsSubclassOf(obj.GetType())) {
  53. return obj.Equals(this);
  54. }
  55. /* types are unrelated; can't be a match */
  56. return false;
  57. }
  58. public static bool operator == (FbxSkin a, FbxSkin b) {
  59. if (object.ReferenceEquals(a, b)) { return true; }
  60. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  61. return a.Equals(b);
  62. }
  63. public static bool operator != (FbxSkin a, FbxSkin b) {
  64. return !(a == b);
  65. }
  66. }
  67. }