FbxDocument.cs 3.1 KB

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