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