FbxSubDeformer.cs 2.5 KB

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