FbxCamera.cs 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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 FbxCamera : FbxNodeAttribute {
  12. internal FbxCamera(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxCamera Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxCamera_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxCamera ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxCamera(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxCamera Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxCamera_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxCamera ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxCamera(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public void SetAspect(FbxCamera.EAspectRatioMode pRatioMode, double pWidth, double pHeight) {
  27. NativeMethods.FbxCamera_SetAspect(swigCPtr, (int)pRatioMode, pWidth, pHeight);
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. }
  30. public FbxCamera.EAspectRatioMode GetAspectRatioMode() {
  31. FbxCamera.EAspectRatioMode ret = (FbxCamera.EAspectRatioMode)NativeMethods.FbxCamera_GetAspectRatioMode(swigCPtr);
  32. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  33. return ret;
  34. }
  35. public void SetNearPlane(double pDistance) {
  36. NativeMethods.FbxCamera_SetNearPlane(swigCPtr, pDistance);
  37. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  38. }
  39. public double GetNearPlane() {
  40. double ret = NativeMethods.FbxCamera_GetNearPlane(swigCPtr);
  41. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  42. return ret;
  43. }
  44. public void SetFarPlane(double pDistance) {
  45. NativeMethods.FbxCamera_SetFarPlane(swigCPtr, pDistance);
  46. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  47. }
  48. public double GetFarPlane() {
  49. double ret = NativeMethods.FbxCamera_GetFarPlane(swigCPtr);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. public void SetApertureMode(FbxCamera.EApertureMode pMode) {
  54. NativeMethods.FbxCamera_SetApertureMode(swigCPtr, (int)pMode);
  55. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  56. }
  57. public FbxCamera.EApertureMode GetApertureMode() {
  58. FbxCamera.EApertureMode ret = (FbxCamera.EApertureMode)NativeMethods.FbxCamera_GetApertureMode(swigCPtr);
  59. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  60. return ret;
  61. }
  62. public void SetApertureWidth(double pWidth) {
  63. NativeMethods.FbxCamera_SetApertureWidth(swigCPtr, pWidth);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. }
  66. public double GetApertureWidth() {
  67. double ret = NativeMethods.FbxCamera_GetApertureWidth(swigCPtr);
  68. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  69. return ret;
  70. }
  71. public void SetApertureHeight(double pHeight) {
  72. NativeMethods.FbxCamera_SetApertureHeight(swigCPtr, pHeight);
  73. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  74. }
  75. public double GetApertureHeight() {
  76. double ret = NativeMethods.FbxCamera_GetApertureHeight(swigCPtr);
  77. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  78. return ret;
  79. }
  80. public double ComputeFocalLength(double pAngleOfView) {
  81. double ret = NativeMethods.FbxCamera_ComputeFocalLength(swigCPtr, pAngleOfView);
  82. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  83. return ret;
  84. }
  85. public FbxPropertyDouble AspectWidth {
  86. get {
  87. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_AspectWidth_get(swigCPtr), false);
  88. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  89. return ret;
  90. }
  91. }
  92. public FbxPropertyDouble AspectHeight {
  93. get {
  94. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_AspectHeight_get(swigCPtr), false);
  95. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  96. return ret;
  97. }
  98. }
  99. public FbxPropertyEGateFit GateFit {
  100. get {
  101. FbxPropertyEGateFit ret = new FbxPropertyEGateFit(NativeMethods.FbxCamera_GateFit_get(swigCPtr), false);
  102. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  103. return ret;
  104. }
  105. }
  106. public FbxPropertyDouble FieldOfView {
  107. get {
  108. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_FieldOfView_get(swigCPtr), false);
  109. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  110. return ret;
  111. }
  112. }
  113. public FbxPropertyDouble FocalLength {
  114. get {
  115. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_FocalLength_get(swigCPtr), false);
  116. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  117. return ret;
  118. }
  119. }
  120. public FbxPropertyDouble NearPlane {
  121. get {
  122. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_NearPlane_get(swigCPtr), false);
  123. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  124. return ret;
  125. }
  126. }
  127. public FbxPropertyDouble FilmAspectRatio {
  128. get {
  129. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_FilmAspectRatio_get(swigCPtr), false);
  130. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  131. return ret;
  132. }
  133. }
  134. public FbxPropertyDouble FilmOffsetX {
  135. get {
  136. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_FilmOffsetX_get(swigCPtr), false);
  137. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  138. return ret;
  139. }
  140. }
  141. public FbxPropertyDouble FilmOffsetY {
  142. get {
  143. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxCamera_FilmOffsetY_get(swigCPtr), false);
  144. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  145. return ret;
  146. }
  147. }
  148. public FbxPropertyEProjectionType ProjectionType {
  149. get {
  150. FbxPropertyEProjectionType ret = new FbxPropertyEProjectionType(NativeMethods.FbxCamera_ProjectionType_get(swigCPtr), false);
  151. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  152. return ret;
  153. }
  154. }
  155. public override int GetHashCode(){
  156. return swigCPtr.Handle.GetHashCode();
  157. }
  158. public bool Equals(FbxCamera other) {
  159. if (object.ReferenceEquals(other, null)) { return false; }
  160. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  161. }
  162. public override bool Equals(object obj){
  163. if (object.ReferenceEquals(obj, null)) { return false; }
  164. /* is obj a subclass of this type; if so use our Equals */
  165. var typed = obj as FbxCamera;
  166. if (!object.ReferenceEquals(typed, null)) {
  167. return this.Equals(typed);
  168. }
  169. /* are we a subclass of the other type; if so use their Equals */
  170. if (typeof(FbxCamera).IsSubclassOf(obj.GetType())) {
  171. return obj.Equals(this);
  172. }
  173. /* types are unrelated; can't be a match */
  174. return false;
  175. }
  176. public static bool operator == (FbxCamera a, FbxCamera b) {
  177. if (object.ReferenceEquals(a, b)) { return true; }
  178. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  179. return a.Equals(b);
  180. }
  181. public static bool operator != (FbxCamera a, FbxCamera b) {
  182. return !(a == b);
  183. }
  184. public enum EProjectionType {
  185. ePerspective,
  186. eOrthogonal
  187. }
  188. public enum EAspectRatioMode {
  189. eWindowSize,
  190. eFixedRatio,
  191. eFixedResolution,
  192. eFixedWidth,
  193. eFixedHeight
  194. }
  195. public enum EApertureMode {
  196. eHorizAndVert,
  197. eHorizontal,
  198. eVertical,
  199. eFocalLength
  200. }
  201. public enum EGateFit {
  202. eFitNone,
  203. eFitVertical,
  204. eFitHorizontal,
  205. eFitFill,
  206. eFitOverscan,
  207. eFitStretch
  208. }
  209. }
  210. }