FbxSurfacePhong.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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 FbxSurfacePhong : FbxSurfaceLambert {
  12. internal FbxSurfacePhong(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxSurfacePhong Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxSurfacePhong_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxSurfacePhong ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSurfacePhong(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxSurfacePhong Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxSurfacePhong_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxSurfacePhong ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxSurfacePhong(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxPropertyDouble3 Specular {
  27. get {
  28. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfacePhong_Specular_get(swigCPtr), false);
  29. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  30. return ret;
  31. }
  32. }
  33. public FbxPropertyDouble SpecularFactor {
  34. get {
  35. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfacePhong_SpecularFactor_get(swigCPtr), false);
  36. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  37. return ret;
  38. }
  39. }
  40. public FbxPropertyDouble Shininess {
  41. get {
  42. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfacePhong_Shininess_get(swigCPtr), false);
  43. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  44. return ret;
  45. }
  46. }
  47. public FbxPropertyDouble3 Reflection {
  48. get {
  49. FbxPropertyDouble3 ret = new FbxPropertyDouble3(NativeMethods.FbxSurfacePhong_Reflection_get(swigCPtr), false);
  50. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  51. return ret;
  52. }
  53. }
  54. public FbxPropertyDouble ReflectionFactor {
  55. get {
  56. FbxPropertyDouble ret = new FbxPropertyDouble(NativeMethods.FbxSurfacePhong_ReflectionFactor_get(swigCPtr), false);
  57. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  58. return ret;
  59. }
  60. }
  61. public override int GetHashCode(){
  62. return swigCPtr.Handle.GetHashCode();
  63. }
  64. public bool Equals(FbxSurfacePhong other) {
  65. if (object.ReferenceEquals(other, null)) { return false; }
  66. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  67. }
  68. public override bool Equals(object obj){
  69. if (object.ReferenceEquals(obj, null)) { return false; }
  70. /* is obj a subclass of this type; if so use our Equals */
  71. var typed = obj as FbxSurfacePhong;
  72. if (!object.ReferenceEquals(typed, null)) {
  73. return this.Equals(typed);
  74. }
  75. /* are we a subclass of the other type; if so use their Equals */
  76. if (typeof(FbxSurfacePhong).IsSubclassOf(obj.GetType())) {
  77. return obj.Equals(this);
  78. }
  79. /* types are unrelated; can't be a match */
  80. return false;
  81. }
  82. public static bool operator == (FbxSurfacePhong a, FbxSurfacePhong b) {
  83. if (object.ReferenceEquals(a, b)) { return true; }
  84. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  85. return a.Equals(b);
  86. }
  87. public static bool operator != (FbxSurfacePhong a, FbxSurfacePhong b) {
  88. return !(a == b);
  89. }
  90. }
  91. }