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