FbxCollection.cs 3.9 KB

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