FbxDoubleTemplates.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. namespace Autodesk.Fbx
  8. {
  9. /**
  10. * The structs in this file are for optimized transfer. Their layout must
  11. * be binary-compatible with the structs in the accompanying .h file.
  12. *
  13. * That allows passing these structs on the stack between C# and C++, rather than
  14. * heap-allocating a class on either side, which is about 100x slower.
  15. */
  16. public struct FbxDouble2: System.IEquatable<FbxDouble2> {
  17. public double X;
  18. public double Y;
  19. public FbxDouble2(double X) { this.X = this.Y = X; }
  20. public FbxDouble2(double X, double Y) { this.X = X; this.Y = Y; }
  21. public FbxDouble2(FbxDouble2 other) { this.X = other.X; this.Y = other.Y; }
  22. public double this[int i] {
  23. get {
  24. switch(i) {
  25. case 0: return X;
  26. case 1: return Y;
  27. default: throw new System.ArgumentOutOfRangeException("i");
  28. }
  29. }
  30. set {
  31. switch(i) {
  32. case 0: X = value; break;
  33. case 1: Y = value; break;
  34. default: throw new System.ArgumentOutOfRangeException("i");
  35. }
  36. }
  37. }
  38. public bool Equals(FbxDouble2 other) {
  39. return X == other.X && Y == other.Y;
  40. }
  41. public override bool Equals(object obj){
  42. if (obj is FbxDouble2) {
  43. return this.Equals((FbxDouble2)obj);
  44. }
  45. /* types are unrelated; can't be a match */
  46. return false;
  47. }
  48. public static bool operator == (FbxDouble2 a, FbxDouble2 b) {
  49. return a.Equals(b);
  50. }
  51. public static bool operator != (FbxDouble2 a, FbxDouble2 b) {
  52. return !(a == b);
  53. }
  54. public override int GetHashCode() {
  55. uint hash = (uint)X.GetHashCode();
  56. hash = (hash << 16) | (hash >> 16);
  57. hash ^= (uint)Y.GetHashCode();
  58. return (int)hash;
  59. }
  60. public override string ToString() {
  61. return string.Format("FbxDouble2({0},{1})", X, Y);
  62. }
  63. }
  64. public struct FbxDouble3: System.IEquatable<FbxDouble3> {
  65. public double X;
  66. public double Y;
  67. public double Z;
  68. public FbxDouble3(double X) { this.X = this.Y = this.Z = X; }
  69. public FbxDouble3(double X, double Y, double Z) { this.X = X; this.Y = Y; this.Z = Z; }
  70. public FbxDouble3(FbxDouble3 other) { this.X = other.X; this.Y = other.Y; this.Z = other.Z; }
  71. public double this[int i] {
  72. get {
  73. switch(i) {
  74. case 0: return X;
  75. case 1: return Y;
  76. case 2: return Z;
  77. default: throw new System.ArgumentOutOfRangeException("i");
  78. }
  79. }
  80. set {
  81. switch(i) {
  82. case 0: X = value; break;
  83. case 1: Y = value; break;
  84. case 2: Z = value; break;
  85. default: throw new System.ArgumentOutOfRangeException("i");
  86. }
  87. }
  88. }
  89. public bool Equals(FbxDouble3 other) {
  90. return X == other.X && Y == other.Y && Z == other.Z;
  91. }
  92. public override bool Equals(object obj){
  93. if (obj is FbxDouble3) {
  94. return this.Equals((FbxDouble3)obj);
  95. }
  96. /* types are unrelated; can't be a match */
  97. return false;
  98. }
  99. public static bool operator == (FbxDouble3 a, FbxDouble3 b) {
  100. return a.Equals(b);
  101. }
  102. public static bool operator != (FbxDouble3 a, FbxDouble3 b) {
  103. return !(a == b);
  104. }
  105. public override int GetHashCode() {
  106. uint hash = (uint)X.GetHashCode();
  107. hash = (hash << 11) | (hash >> 21);
  108. hash ^= (uint)Y.GetHashCode();
  109. hash = (hash << 11) | (hash >> 21);
  110. hash ^= (uint)Z.GetHashCode();
  111. return (int)hash;
  112. }
  113. public override string ToString() {
  114. return string.Format("FbxDouble3({0},{1},{2})", X, Y, Z);
  115. }
  116. }
  117. public struct FbxDouble4: System.IEquatable<FbxDouble4> {
  118. public double X;
  119. public double Y;
  120. public double Z;
  121. public double W;
  122. public FbxDouble4(double X) { this.X = this.Y = this.Z = this.W = X; }
  123. public FbxDouble4(double X, double Y, double Z, double W) { this.X = X; this.Y = Y; this.Z = Z; this.W = W; }
  124. public FbxDouble4(FbxDouble4 other) { this.X = other.X; this.Y = other.Y; this.Z = other.Z; this.W = other.W; }
  125. public double this[int i] {
  126. get {
  127. switch(i) {
  128. case 0: return X;
  129. case 1: return Y;
  130. case 2: return Z;
  131. case 3: return W;
  132. default: throw new System.ArgumentOutOfRangeException("i");
  133. }
  134. }
  135. set {
  136. switch(i) {
  137. case 0: X = value; break;
  138. case 1: Y = value; break;
  139. case 2: Z = value; break;
  140. case 3: W = value; break;
  141. default: throw new System.ArgumentOutOfRangeException("i");
  142. }
  143. }
  144. }
  145. public bool Equals(FbxDouble4 other) {
  146. return X == other.X && Y == other.Y && Z == other.Z && W == other.W;
  147. }
  148. public override bool Equals(object obj){
  149. if (obj is FbxDouble4) {
  150. return this.Equals((FbxDouble4)obj);
  151. }
  152. /* types are unrelated; can't be a match */
  153. return false;
  154. }
  155. public static bool operator == (FbxDouble4 a, FbxDouble4 b) {
  156. return a.Equals(b);
  157. }
  158. public static bool operator != (FbxDouble4 a, FbxDouble4 b) {
  159. return !(a == b);
  160. }
  161. public override int GetHashCode() {
  162. uint hash = (uint)X.GetHashCode();
  163. hash = (hash << 8) | (hash >> 24);
  164. hash ^= (uint)Y.GetHashCode();
  165. hash = (hash << 8) | (hash >> 24);
  166. hash ^= (uint)Z.GetHashCode();
  167. hash = (hash << 8) | (hash >> 24);
  168. hash ^= (uint)W.GetHashCode();
  169. return (int)hash;
  170. }
  171. public override string ToString() {
  172. return string.Format("FbxDouble4({0},{1},{2},{3})", X, Y, Z, W);
  173. }
  174. }
  175. public struct FbxColor: System.IEquatable<FbxColor> {
  176. public double mRed;
  177. public double mGreen;
  178. public double mBlue;
  179. public double mAlpha;
  180. public FbxColor(double red, double green, double blue, double alpha = 1) { this.mRed = red; this.mGreen = green; this.mBlue = blue; this.mAlpha = alpha; }
  181. public FbxColor(FbxDouble3 rgb, double alpha = 1) : this (rgb.X, rgb.Y, rgb.Z, alpha) { }
  182. public FbxColor(FbxDouble4 rgba) : this (rgba.X, rgba.Y, rgba.Z, rgba.W) { }
  183. public bool IsValid() {
  184. return Globals.IsValidColor(this);
  185. }
  186. public void Set(double red, double green, double blue, double alpha = 1) {
  187. this.mRed = red; this.mGreen = green; this.mBlue = blue; this.mAlpha = alpha;
  188. }
  189. public double this[int i] {
  190. get {
  191. switch(i) {
  192. case 0: return mRed;
  193. case 1: return mGreen;
  194. case 2: return mBlue;
  195. case 3: return mAlpha;
  196. default: throw new System.ArgumentOutOfRangeException("i");
  197. }
  198. }
  199. set {
  200. switch(i) {
  201. case 0: mRed = value; break;
  202. case 1: mGreen = value; break;
  203. case 2: mBlue = value; break;
  204. case 3: mAlpha = value; break;
  205. default: throw new System.ArgumentOutOfRangeException("i");
  206. }
  207. }
  208. }
  209. public bool Equals(FbxColor other) {
  210. return mRed == other.mRed && mGreen == other.mGreen && mBlue == other.mBlue && mAlpha == other.mAlpha;
  211. }
  212. public override bool Equals(object obj){
  213. if (obj is FbxColor) {
  214. return this.Equals((FbxColor)obj);
  215. }
  216. /* types are unrelated; can't be a match */
  217. return false;
  218. }
  219. public static bool operator == (FbxColor a, FbxColor b) {
  220. return a.Equals(b);
  221. }
  222. public static bool operator != (FbxColor a, FbxColor b) {
  223. return !(a == b);
  224. }
  225. public override int GetHashCode() {
  226. uint hash = (uint)mRed.GetHashCode();
  227. hash = (hash << 8) | (hash >> 24);
  228. hash ^= (uint)mGreen.GetHashCode();
  229. hash = (hash << 8) | (hash >> 24);
  230. hash ^= (uint)mBlue.GetHashCode();
  231. hash = (hash << 8) | (hash >> 24);
  232. hash ^= (uint)mAlpha.GetHashCode();
  233. return (int)hash;
  234. }
  235. public override string ToString() {
  236. return string.Format("FbxColor({0},{1},{2},{3})", mRed, mGreen, mBlue, mAlpha);
  237. }
  238. }
  239. public struct FbxVector2: System.IEquatable<FbxVector2> {
  240. public double X;
  241. public double Y;
  242. public FbxVector2(double X) { this.X = this.Y = X; }
  243. public FbxVector2(double X, double Y) { this.X = X; this.Y = Y; }
  244. public FbxVector2(FbxDouble2 other) { this.X = other.X; this.Y = other.Y; }
  245. public FbxVector2(FbxVector2 other) { this.X = other.X; this.Y = other.Y; }
  246. public double this[int i] {
  247. get {
  248. switch(i) {
  249. case 0: return X;
  250. case 1: return Y;
  251. default: throw new System.ArgumentOutOfRangeException("i");
  252. }
  253. }
  254. set {
  255. switch(i) {
  256. case 0: X = value; break;
  257. case 1: Y = value; break;
  258. default: throw new System.ArgumentOutOfRangeException("i");
  259. }
  260. }
  261. }
  262. public bool Equals(FbxVector2 other) {
  263. return X == other.X && Y == other.Y;
  264. }
  265. public override bool Equals(object obj){
  266. if (obj is FbxVector2) {
  267. return this.Equals((FbxVector2)obj);
  268. }
  269. /* types are unrelated; can't be a match */
  270. return false;
  271. }
  272. public static bool operator == (FbxVector2 a, FbxVector2 b) {
  273. return a.Equals(b);
  274. }
  275. public static bool operator != (FbxVector2 a, FbxVector2 b) {
  276. return !(a == b);
  277. }
  278. public override int GetHashCode() {
  279. uint hash = (uint)X.GetHashCode();
  280. hash = (hash << 16) | (hash >> 16);
  281. hash ^= (uint)Y.GetHashCode();
  282. return (int)hash;
  283. }
  284. public override string ToString() {
  285. return string.Format("FbxVector2({0},{1})", X, Y);
  286. }
  287. // Add/sub a scalar. We add/sub each coordinate.
  288. public static FbxVector2 operator + (FbxVector2 a, double b) {
  289. return new FbxVector2(a.X + b, a.Y + b);
  290. }
  291. public static FbxVector2 operator - (FbxVector2 a, double b) {
  292. return new FbxVector2(a.X - b, a.Y - b);
  293. }
  294. // Scale.
  295. public static FbxVector2 operator * (FbxVector2 a, double b) {
  296. return new FbxVector2(a.X * b, a.Y * b);
  297. }
  298. public static FbxVector2 operator * (double a, FbxVector2 b) {
  299. return new FbxVector2(a * b.X, a * b.Y);
  300. }
  301. public static FbxVector2 operator / (FbxVector2 a, double b) {
  302. return new FbxVector2(a.X / b, a.Y / b);
  303. }
  304. // Negate.
  305. public static FbxVector2 operator - (FbxVector2 a) {
  306. return new FbxVector2(-a.X, -a.Y);
  307. }
  308. // Add/sub vector.
  309. public static FbxVector2 operator + (FbxVector2 a, FbxVector2 b) {
  310. return new FbxVector2(a.X + b.X, a.Y + b.Y);
  311. }
  312. public static FbxVector2 operator - (FbxVector2 a, FbxVector2 b) {
  313. return new FbxVector2(a.X - b.X, a.Y - b.Y);
  314. }
  315. // Memberwise multiplication -- NOT dotproduct
  316. public static FbxVector2 operator * (FbxVector2 a, FbxVector2 b) {
  317. return new FbxVector2(a.X * b.X, a.Y * b.Y);
  318. }
  319. public static FbxVector2 operator / (FbxVector2 a, FbxVector2 b) {
  320. return new FbxVector2(a.X / b.X, a.Y / b.Y);
  321. }
  322. public double DotProduct(FbxVector2 other) {
  323. return this.X * other.X + this.Y * other.Y;
  324. }
  325. public double SquareLength() {
  326. return X * X + Y * Y;
  327. }
  328. public double Length() {
  329. return System.Math.Sqrt(SquareLength());
  330. }
  331. public double Distance(FbxVector2 other) {
  332. return (this - other).Length();
  333. }
  334. }
  335. public struct FbxVector4: System.IEquatable<FbxVector4> {
  336. public double X;
  337. public double Y;
  338. public double Z;
  339. public double W;
  340. public FbxVector4(FbxVector4 other) { this.X = other.X; this.Y = other.Y; this.Z = other.Z; this.W = other.W; }
  341. public FbxVector4(double X, double Y, double Z, double W = 1) { this.X = X; this.Y = Y; this.Z = Z; this.W = W; }
  342. public FbxVector4(FbxDouble3 other) : this (other.X, other.Y, other.Z) { }
  343. public double this[int i] {
  344. get {
  345. switch(i) {
  346. case 0: return X;
  347. case 1: return Y;
  348. case 2: return Z;
  349. case 3: return W;
  350. default: throw new System.ArgumentOutOfRangeException("i");
  351. }
  352. }
  353. set {
  354. switch(i) {
  355. case 0: X = value; break;
  356. case 1: Y = value; break;
  357. case 2: Z = value; break;
  358. case 3: W = value; break;
  359. default: throw new System.ArgumentOutOfRangeException("i");
  360. }
  361. }
  362. }
  363. public bool Equals(FbxVector4 other) {
  364. return X == other.X && Y == other.Y && Z == other.Z && W == other.W;
  365. }
  366. public override bool Equals(object obj){
  367. if (obj is FbxVector4) {
  368. return this.Equals((FbxVector4)obj);
  369. }
  370. /* types are unrelated; can't be a match */
  371. return false;
  372. }
  373. public static bool operator == (FbxVector4 a, FbxVector4 b) {
  374. return a.Equals(b);
  375. }
  376. public static bool operator != (FbxVector4 a, FbxVector4 b) {
  377. return !(a == b);
  378. }
  379. public override int GetHashCode() {
  380. uint hash = (uint)X.GetHashCode();
  381. hash = (hash << 8) | (hash >> 24);
  382. hash ^= (uint)Y.GetHashCode();
  383. hash = (hash << 8) | (hash >> 24);
  384. hash ^= (uint)Z.GetHashCode();
  385. hash = (hash << 8) | (hash >> 24);
  386. hash ^= (uint)W.GetHashCode();
  387. return (int)hash;
  388. }
  389. public override string ToString() {
  390. return string.Format("FbxVector4({0},{1},{2},{3})", X, Y, Z, W);
  391. }
  392. // Add/sub a scalar. We add/sub each coordinate.
  393. public static FbxVector4 operator + (FbxVector4 a, double b) {
  394. return new FbxVector4(a.X + b, a.Y + b, a.Z + b, a.W + b);
  395. }
  396. public static FbxVector4 operator - (FbxVector4 a, double b) {
  397. return new FbxVector4(a.X - b, a.Y - b, a.Z - b, a.W - b);
  398. }
  399. // Scale.
  400. public static FbxVector4 operator * (FbxVector4 a, double b) {
  401. return new FbxVector4(a.X * b, a.Y * b, a.Z * b, a.W * b);
  402. }
  403. public static FbxVector4 operator * (double a, FbxVector4 b) {
  404. // Note: this operator is not provided in C++ FBX SDK.
  405. // But it's how any mathematician would write it.
  406. return new FbxVector4(a * b.X, a * b.Y, a * b.Z, a * b.W);
  407. }
  408. public static FbxVector4 operator / (FbxVector4 a, double b) {
  409. return new FbxVector4(a.X / b, a.Y / b, a.Z / b, a.W / b);
  410. }
  411. // Negate.
  412. public static FbxVector4 operator - (FbxVector4 a) {
  413. return new FbxVector4(-a.X, -a.Y, -a.Z, -a.W);
  414. }
  415. // Add/sub vector.
  416. public static FbxVector4 operator + (FbxVector4 a, FbxVector4 b) {
  417. return new FbxVector4(a.X + b.X, a.Y + b.Y, a.Z + b.Z, a.W + b.W);
  418. }
  419. public static FbxVector4 operator - (FbxVector4 a, FbxVector4 b) {
  420. return new FbxVector4(a.X - b.X, a.Y - b.Y, a.Z - b.Z, a.W - b.W);
  421. }
  422. // Memberwise multiplication -- NOT dotproduct
  423. public static FbxVector4 operator * (FbxVector4 a, FbxVector4 b) {
  424. return new FbxVector4(a.X * b.X, a.Y * b.Y, a.Z * b.Z, a.W * b.W);
  425. }
  426. public static FbxVector4 operator / (FbxVector4 a, FbxVector4 b) {
  427. return new FbxVector4(a.X / b.X, a.Y / b.Y, a.Z / b.Z, a.W / b.W);
  428. }
  429. // Dot product of the 3d vector, ignoring W.
  430. public double DotProduct(FbxVector4 other) {
  431. return X * other.X + Y * other.Y + Z * other.Z;
  432. }
  433. // Cross product of the two 3d vectors, ignoring W.
  434. public FbxVector4 CrossProduct(FbxVector4 other) {
  435. return new FbxVector4(
  436. Y * other.Z - Z * other.Y,
  437. Z * other.X - X * other.Z,
  438. X * other.Y - Y * other.X);
  439. }
  440. // Length of the 3d vector, ignoring W.
  441. public double SquareLength() {
  442. return X * X + Y * Y + Z * Z;
  443. }
  444. public double Length() {
  445. return System.Math.Sqrt(SquareLength());
  446. }
  447. public double Distance(FbxVector4 other) {
  448. return (this - other).Length();
  449. }
  450. }
  451. }