FbxSystemUnit.cs 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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 FbxSystemUnit : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxSystemUnit(global::System.IntPtr cPtr, bool cMemoryOwn) {
  15. swigCMemOwn = cMemoryOwn;
  16. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  17. }
  18. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxSystemUnit obj) {
  19. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~FbxSystemUnit() {
  22. Dispose();
  23. }
  24. public virtual void Dispose() {
  25. lock(this) {
  26. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  27. if (swigCMemOwn) {
  28. swigCMemOwn = false;
  29. NativeMethods.delete_FbxSystemUnit(swigCPtr);
  30. }
  31. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  32. }
  33. global::System.GC.SuppressFinalize(this);
  34. }
  35. }
  36. public class ConversionOptions : global::System.IDisposable {
  37. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  38. protected bool swigCMemOwn;
  39. internal ConversionOptions(global::System.IntPtr cPtr, bool cMemoryOwn) {
  40. swigCMemOwn = cMemoryOwn;
  41. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  42. }
  43. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ConversionOptions obj) {
  44. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  45. }
  46. ~ConversionOptions() {
  47. Dispose();
  48. }
  49. public virtual void Dispose() {
  50. lock(this) {
  51. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  52. if (swigCMemOwn) {
  53. swigCMemOwn = false;
  54. NativeMethods.delete_FbxSystemUnit_ConversionOptions(swigCPtr);
  55. }
  56. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  57. }
  58. global::System.GC.SuppressFinalize(this);
  59. }
  60. }
  61. public ConversionOptions() : this(NativeMethods.new_FbxSystemUnit_ConversionOptions(), true) {
  62. }
  63. }
  64. public FbxSystemUnit(double pScaleFactor, double pMultiplier) : this(NativeMethods.new_FbxSystemUnit__SWIG_0(pScaleFactor, pMultiplier), true) {
  65. }
  66. public FbxSystemUnit(double pScaleFactor) : this(NativeMethods.new_FbxSystemUnit__SWIG_1(pScaleFactor), true) {
  67. }
  68. public static FbxSystemUnit mm {
  69. get {
  70. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_mm_get(), false);
  71. return ret;
  72. }
  73. }
  74. public static FbxSystemUnit dm {
  75. get {
  76. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_dm_get(), false);
  77. return ret;
  78. }
  79. }
  80. public static FbxSystemUnit cm {
  81. get {
  82. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_cm_get(), false);
  83. return ret;
  84. }
  85. }
  86. public static FbxSystemUnit m {
  87. get {
  88. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_m_get(), false);
  89. return ret;
  90. }
  91. }
  92. public static FbxSystemUnit km {
  93. get {
  94. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_km_get(), false);
  95. return ret;
  96. }
  97. }
  98. public static FbxSystemUnit Inch {
  99. get {
  100. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_Inch_get(), false);
  101. return ret;
  102. }
  103. }
  104. public static FbxSystemUnit Foot {
  105. get {
  106. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_Foot_get(), false);
  107. return ret;
  108. }
  109. }
  110. public static FbxSystemUnit Yard {
  111. get {
  112. FbxSystemUnit ret = new FbxSystemUnit(NativeMethods.FbxSystemUnit_Yard_get(), false);
  113. return ret;
  114. }
  115. }
  116. public void ConvertScene(FbxScene pScene, FbxSystemUnit.ConversionOptions pOptions) {
  117. NativeMethods.FbxSystemUnit_ConvertScene__SWIG_0(swigCPtr, FbxScene.getCPtr(pScene), FbxSystemUnit.ConversionOptions.getCPtr(pOptions));
  118. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  119. }
  120. public void ConvertScene(FbxScene pScene) {
  121. NativeMethods.FbxSystemUnit_ConvertScene__SWIG_1(swigCPtr, FbxScene.getCPtr(pScene));
  122. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  123. }
  124. public double GetScaleFactor() {
  125. double ret = NativeMethods.FbxSystemUnit_GetScaleFactor(swigCPtr);
  126. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  127. return ret;
  128. }
  129. public string GetScaleFactorAsString(bool pAbbreviated) {
  130. string ret = NativeMethods.FbxSystemUnit_GetScaleFactorAsString__SWIG_0(swigCPtr, pAbbreviated);
  131. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  132. return ret;
  133. }
  134. public string GetScaleFactorAsString() {
  135. string ret = NativeMethods.FbxSystemUnit_GetScaleFactorAsString__SWIG_1(swigCPtr);
  136. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  137. return ret;
  138. }
  139. public double GetMultiplier() {
  140. double ret = NativeMethods.FbxSystemUnit_GetMultiplier(swigCPtr);
  141. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  142. return ret;
  143. }
  144. private bool _equals(FbxSystemUnit pOther) {
  145. bool ret = NativeMethods.FbxSystemUnit__equals(swigCPtr, FbxSystemUnit.getCPtr(pOther));
  146. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  147. return ret;
  148. }
  149. public double GetConversionFactorTo(FbxSystemUnit pTarget) {
  150. double ret = NativeMethods.FbxSystemUnit_GetConversionFactorTo(swigCPtr, FbxSystemUnit.getCPtr(pTarget));
  151. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  152. return ret;
  153. }
  154. public double GetConversionFactorFrom(FbxSystemUnit pSource) {
  155. double ret = NativeMethods.FbxSystemUnit_GetConversionFactorFrom(swigCPtr, FbxSystemUnit.getCPtr(pSource));
  156. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  157. return ret;
  158. }
  159. public bool Equals(FbxSystemUnit other) {
  160. if (object.ReferenceEquals(other, null)) { return false; }
  161. return _equals(other);
  162. }
  163. public override bool Equals(object obj){
  164. if (object.ReferenceEquals(obj, null)) { return false; }
  165. /* is obj a subclass of this type; if so use our Equals */
  166. var typed = obj as FbxSystemUnit;
  167. if (!object.ReferenceEquals(typed, null)) {
  168. return this.Equals(typed);
  169. }
  170. /* are we a subclass of the other type; if so use their Equals */
  171. if (typeof(FbxSystemUnit).IsSubclassOf(obj.GetType())) {
  172. return obj.Equals(this);
  173. }
  174. /* types are unrelated; can't be a match */
  175. return false;
  176. }
  177. public static bool operator == (FbxSystemUnit a, FbxSystemUnit b) {
  178. if (object.ReferenceEquals(a, b)) { return true; }
  179. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  180. return a.Equals(b);
  181. }
  182. public static bool operator != (FbxSystemUnit a, FbxSystemUnit b) {
  183. return !(a == b);
  184. }
  185. public override int GetHashCode() {
  186. int ret = NativeMethods.FbxSystemUnit_GetHashCode(swigCPtr);
  187. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  188. return ret;
  189. }
  190. public override string ToString() {
  191. var unitName = GetScaleFactorAsString();
  192. if (unitName == "custom unit") {
  193. unitName += string.Format(" ({0} cm)", GetScaleFactor());
  194. }
  195. var multiplier = GetMultiplier();
  196. if (multiplier != 1.0) {
  197. unitName += string.Format(" multiplier {0}", multiplier);
  198. }
  199. return unitName;
  200. }
  201. }
  202. }