FbxSurfaceLambert.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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 FbxSurfaceLambert : FbxSurfaceMaterial {
  12. internal FbxSurfaceLambert(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxSurfaceLambert Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxSurfaceLambert_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxSurfaceLambert ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSurfaceLambert(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxSurfaceLambert Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxSurfaceLambert_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxSurfaceLambert ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSurfaceLambert(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxPropertyDouble3 Emissive {
  27. get {
  28. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_Emissive_get(swigCPtr), false);
  29. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  30. return ret;
  31. }
  32. }
  33. public FbxPropertyDouble EmissiveFactor {
  34. get {
  35. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfaceLambert_EmissiveFactor_get(swigCPtr), false);
  36. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  37. return ret;
  38. }
  39. }
  40. public FbxPropertyDouble3 Ambient {
  41. get {
  42. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_Ambient_get(swigCPtr), false);
  43. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  44. return ret;
  45. }
  46. }
  47. public FbxPropertyDouble AmbientFactor {
  48. get {
  49. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfaceLambert_AmbientFactor_get(swigCPtr), false);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. }
  54. public FbxPropertyDouble3 Diffuse {
  55. get {
  56. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_Diffuse_get(swigCPtr), false);
  57. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  58. return ret;
  59. }
  60. }
  61. public FbxPropertyDouble DiffuseFactor {
  62. get {
  63. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfaceLambert_DiffuseFactor_get(swigCPtr), false);
  64. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  65. return ret;
  66. }
  67. }
  68. public FbxPropertyDouble3 NormalMap {
  69. get {
  70. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_NormalMap_get(swigCPtr), false);
  71. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  72. return ret;
  73. }
  74. }
  75. public FbxPropertyDouble3 Bump {
  76. get {
  77. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_Bump_get(swigCPtr), false);
  78. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  79. return ret;
  80. }
  81. }
  82. public FbxPropertyDouble BumpFactor {
  83. get {
  84. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfaceLambert_BumpFactor_get(swigCPtr), false);
  85. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  86. return ret;
  87. }
  88. }
  89. public FbxPropertyDouble3 TransparentColor {
  90. get {
  91. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_TransparentColor_get(swigCPtr), false);
  92. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  93. return ret;
  94. }
  95. }
  96. public FbxPropertyDouble TransparencyFactor {
  97. get {
  98. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfaceLambert_TransparencyFactor_get(swigCPtr), false);
  99. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  100. return ret;
  101. }
  102. }
  103. public FbxPropertyDouble3 DisplacementColor {
  104. get {
  105. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_DisplacementColor_get(swigCPtr), false);
  106. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  107. return ret;
  108. }
  109. }
  110. public FbxPropertyDouble DisplacementFactor {
  111. get {
  112. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfaceLambert_DisplacementFactor_get(swigCPtr), false);
  113. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  114. return ret;
  115. }
  116. }
  117. public FbxPropertyDouble3 VectorDisplacementColor {
  118. get {
  119. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfaceLambert_VectorDisplacementColor_get(swigCPtr), false);
  120. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  121. return ret;
  122. }
  123. }
  124. public FbxPropertyDouble VectorDisplacementFactor {
  125. get {
  126. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfaceLambert_VectorDisplacementFactor_get(swigCPtr), false);
  127. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  128. return ret;
  129. }
  130. }
  131. public override int GetHashCode(){
  132. return swigCPtr.Handle.GetHashCode();
  133. }
  134. public bool Equals(FbxSurfaceLambert other) {
  135. if (object.ReferenceEquals(other, null)) { return false; }
  136. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  137. }
  138. public override bool Equals(object obj){
  139. if (object.ReferenceEquals(obj, null)) { return false; }
  140. /* is obj a subclass of this type; if so use our Equals */
  141. var typed = obj as FbxSurfaceLambert;
  142. if (!object.ReferenceEquals(typed, null)) {
  143. return this.Equals(typed);
  144. }
  145. /* are we a subclass of the other type; if so use their Equals */
  146. if (typeof(FbxSurfaceLambert).IsSubclassOf(obj.GetType())) {
  147. return obj.Equals(this);
  148. }
  149. /* types are unrelated; can't be a match */
  150. return false;
  151. }
  152. public static bool operator == (FbxSurfaceLambert a, FbxSurfaceLambert b) {
  153. if (object.ReferenceEquals(a, b)) { return true; }
  154. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  155. return a.Equals(b);
  156. }
  157. public static bool operator != (FbxSurfaceLambert a, FbxSurfaceLambert b) {
  158. return !(a == b);
  159. }
  160. }
  161. }