babylon.math.js 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382
  1. var BABYLON;
  2. (function (BABYLON) {
  3. var Color3 = (function () {
  4. function Color3(r, g, b) {
  5. if (r === void 0) { r = 0; }
  6. if (g === void 0) { g = 0; }
  7. if (b === void 0) { b = 0; }
  8. this.r = r;
  9. this.g = g;
  10. this.b = b;
  11. }
  12. Color3.prototype.toString = function () {
  13. return "{R: " + this.r + " G:" + this.g + " B:" + this.b + "}";
  14. };
  15. // Operators
  16. Color3.prototype.toArray = function (array, index) {
  17. if (index === undefined) {
  18. index = 0;
  19. }
  20. array[index] = this.r;
  21. array[index + 1] = this.g;
  22. array[index + 2] = this.b;
  23. return this;
  24. };
  25. Color3.prototype.toColor4 = function (alpha) {
  26. if (alpha === void 0) { alpha = 1; }
  27. return new Color4(this.r, this.g, this.b, alpha);
  28. };
  29. Color3.prototype.asArray = function () {
  30. var result = [];
  31. this.toArray(result, 0);
  32. return result;
  33. };
  34. Color3.prototype.toLuminance = function () {
  35. return this.r * 0.3 + this.g * 0.59 + this.b * 0.11;
  36. };
  37. Color3.prototype.multiply = function (otherColor) {
  38. return new Color3(this.r * otherColor.r, this.g * otherColor.g, this.b * otherColor.b);
  39. };
  40. Color3.prototype.multiplyToRef = function (otherColor, result) {
  41. result.r = this.r * otherColor.r;
  42. result.g = this.g * otherColor.g;
  43. result.b = this.b * otherColor.b;
  44. return this;
  45. };
  46. Color3.prototype.equals = function (otherColor) {
  47. return otherColor && this.r === otherColor.r && this.g === otherColor.g && this.b === otherColor.b;
  48. };
  49. Color3.prototype.scale = function (scale) {
  50. return new Color3(this.r * scale, this.g * scale, this.b * scale);
  51. };
  52. Color3.prototype.scaleToRef = function (scale, result) {
  53. result.r = this.r * scale;
  54. result.g = this.g * scale;
  55. result.b = this.b * scale;
  56. return this;
  57. };
  58. Color3.prototype.add = function (otherColor) {
  59. return new Color3(this.r + otherColor.r, this.g + otherColor.g, this.b + otherColor.b);
  60. };
  61. Color3.prototype.addToRef = function (otherColor, result) {
  62. result.r = this.r + otherColor.r;
  63. result.g = this.g + otherColor.g;
  64. result.b = this.b + otherColor.b;
  65. return this;
  66. };
  67. Color3.prototype.subtract = function (otherColor) {
  68. return new Color3(this.r - otherColor.r, this.g - otherColor.g, this.b - otherColor.b);
  69. };
  70. Color3.prototype.subtractToRef = function (otherColor, result) {
  71. result.r = this.r - otherColor.r;
  72. result.g = this.g - otherColor.g;
  73. result.b = this.b - otherColor.b;
  74. return this;
  75. };
  76. Color3.prototype.clone = function () {
  77. return new Color3(this.r, this.g, this.b);
  78. };
  79. Color3.prototype.copyFrom = function (source) {
  80. this.r = source.r;
  81. this.g = source.g;
  82. this.b = source.b;
  83. return this;
  84. };
  85. Color3.prototype.copyFromFloats = function (r, g, b) {
  86. this.r = r;
  87. this.g = g;
  88. this.b = b;
  89. return this;
  90. };
  91. // Statics
  92. Color3.FromArray = function (array, offset) {
  93. if (offset === void 0) { offset = 0; }
  94. return new Color3(array[offset], array[offset + 1], array[offset + 2]);
  95. };
  96. Color3.FromInts = function (r, g, b) {
  97. return new Color3(r / 255.0, g / 255.0, b / 255.0);
  98. };
  99. Color3.Lerp = function (start, end, amount) {
  100. var r = start.r + ((end.r - start.r) * amount);
  101. var g = start.g + ((end.g - start.g) * amount);
  102. var b = start.b + ((end.b - start.b) * amount);
  103. return new Color3(r, g, b);
  104. };
  105. Color3.Red = function () {
  106. return new Color3(1, 0, 0);
  107. };
  108. Color3.Green = function () {
  109. return new Color3(0, 1, 0);
  110. };
  111. Color3.Blue = function () {
  112. return new Color3(0, 0, 1);
  113. };
  114. Color3.Black = function () {
  115. return new Color3(0, 0, 0);
  116. };
  117. Color3.White = function () {
  118. return new Color3(1, 1, 1);
  119. };
  120. Color3.Purple = function () {
  121. return new Color3(0.5, 0, 0.5);
  122. };
  123. Color3.Magenta = function () {
  124. return new Color3(1, 0, 1);
  125. };
  126. Color3.Yellow = function () {
  127. return new Color3(1, 1, 0);
  128. };
  129. Color3.Gray = function () {
  130. return new Color3(0.5, 0.5, 0.5);
  131. };
  132. return Color3;
  133. })();
  134. BABYLON.Color3 = Color3;
  135. var Color4 = (function () {
  136. function Color4(r, g, b, a) {
  137. this.r = r;
  138. this.g = g;
  139. this.b = b;
  140. this.a = a;
  141. }
  142. // Operators
  143. Color4.prototype.addInPlace = function (right) {
  144. this.r += right.r;
  145. this.g += right.g;
  146. this.b += right.b;
  147. this.a += right.a;
  148. return this;
  149. };
  150. Color4.prototype.asArray = function () {
  151. var result = [];
  152. this.toArray(result, 0);
  153. return result;
  154. };
  155. Color4.prototype.toArray = function (array, index) {
  156. if (index === undefined) {
  157. index = 0;
  158. }
  159. array[index] = this.r;
  160. array[index + 1] = this.g;
  161. array[index + 2] = this.b;
  162. array[index + 3] = this.a;
  163. return this;
  164. };
  165. Color4.prototype.add = function (right) {
  166. return new Color4(this.r + right.r, this.g + right.g, this.b + right.b, this.a + right.a);
  167. };
  168. Color4.prototype.subtract = function (right) {
  169. return new Color4(this.r - right.r, this.g - right.g, this.b - right.b, this.a - right.a);
  170. };
  171. Color4.prototype.subtractToRef = function (right, result) {
  172. result.r = this.r - right.r;
  173. result.g = this.g - right.g;
  174. result.b = this.b - right.b;
  175. result.a = this.a - right.a;
  176. return this;
  177. };
  178. Color4.prototype.scale = function (scale) {
  179. return new Color4(this.r * scale, this.g * scale, this.b * scale, this.a * scale);
  180. };
  181. Color4.prototype.scaleToRef = function (scale, result) {
  182. result.r = this.r * scale;
  183. result.g = this.g * scale;
  184. result.b = this.b * scale;
  185. result.a = this.a * scale;
  186. return this;
  187. };
  188. Color4.prototype.toString = function () {
  189. return "{R: " + this.r + " G:" + this.g + " B:" + this.b + " A:" + this.a + "}";
  190. };
  191. Color4.prototype.clone = function () {
  192. return new Color4(this.r, this.g, this.b, this.a);
  193. };
  194. Color4.prototype.copyFrom = function (source) {
  195. this.r = source.r;
  196. this.g = source.g;
  197. this.b = source.b;
  198. this.a = source.a;
  199. return this;
  200. };
  201. // Statics
  202. Color4.Lerp = function (left, right, amount) {
  203. var result = new Color4(0, 0, 0, 0);
  204. Color4.LerpToRef(left, right, amount, result);
  205. return result;
  206. };
  207. Color4.LerpToRef = function (left, right, amount, result) {
  208. result.r = left.r + (right.r - left.r) * amount;
  209. result.g = left.g + (right.g - left.g) * amount;
  210. result.b = left.b + (right.b - left.b) * amount;
  211. result.a = left.a + (right.a - left.a) * amount;
  212. };
  213. Color4.FromArray = function (array, offset) {
  214. if (offset === void 0) { offset = 0; }
  215. return new Color4(array[offset], array[offset + 1], array[offset + 2], array[offset + 3]);
  216. };
  217. Color4.FromInts = function (r, g, b, a) {
  218. return new Color4(r / 255.0, g / 255.0, b / 255.0, a / 255.0);
  219. };
  220. return Color4;
  221. })();
  222. BABYLON.Color4 = Color4;
  223. var Vector2 = (function () {
  224. function Vector2(x, y) {
  225. this.x = x;
  226. this.y = y;
  227. }
  228. Vector2.prototype.toString = function () {
  229. return "{X: " + this.x + " Y:" + this.y + "}";
  230. };
  231. // Operators
  232. Vector2.prototype.toArray = function (array, index) {
  233. if (index === void 0) { index = 0; }
  234. array[index] = this.x;
  235. array[index + 1] = this.y;
  236. return this;
  237. };
  238. Vector2.prototype.asArray = function () {
  239. var result = [];
  240. this.toArray(result, 0);
  241. return result;
  242. };
  243. Vector2.prototype.copyFrom = function (source) {
  244. this.x = source.x;
  245. this.y = source.y;
  246. return this;
  247. };
  248. Vector2.prototype.copyFromFloats = function (x, y) {
  249. this.x = x;
  250. this.y = y;
  251. return this;
  252. };
  253. Vector2.prototype.add = function (otherVector) {
  254. return new Vector2(this.x + otherVector.x, this.y + otherVector.y);
  255. };
  256. Vector2.prototype.addVector3 = function (otherVector) {
  257. return new Vector2(this.x + otherVector.x, this.y + otherVector.y);
  258. };
  259. Vector2.prototype.subtract = function (otherVector) {
  260. return new Vector2(this.x - otherVector.x, this.y - otherVector.y);
  261. };
  262. Vector2.prototype.subtractInPlace = function (otherVector) {
  263. this.x -= otherVector.x;
  264. this.y -= otherVector.y;
  265. return this;
  266. };
  267. Vector2.prototype.multiplyInPlace = function (otherVector) {
  268. this.x *= otherVector.x;
  269. this.y *= otherVector.y;
  270. return this;
  271. };
  272. Vector2.prototype.multiply = function (otherVector) {
  273. return new Vector2(this.x * otherVector.x, this.y * otherVector.y);
  274. };
  275. Vector2.prototype.multiplyToRef = function (otherVector, result) {
  276. result.x = this.x * otherVector.x;
  277. result.y = this.y * otherVector.y;
  278. return this;
  279. };
  280. Vector2.prototype.multiplyByFloats = function (x, y) {
  281. return new Vector2(this.x * x, this.y * y);
  282. };
  283. Vector2.prototype.divide = function (otherVector) {
  284. return new Vector2(this.x / otherVector.x, this.y / otherVector.y);
  285. };
  286. Vector2.prototype.divideToRef = function (otherVector, result) {
  287. result.x = this.x / otherVector.x;
  288. result.y = this.y / otherVector.y;
  289. return this;
  290. };
  291. Vector2.prototype.negate = function () {
  292. return new Vector2(-this.x, -this.y);
  293. };
  294. Vector2.prototype.scaleInPlace = function (scale) {
  295. this.x *= scale;
  296. this.y *= scale;
  297. return this;
  298. };
  299. Vector2.prototype.scale = function (scale) {
  300. return new Vector2(this.x * scale, this.y * scale);
  301. };
  302. Vector2.prototype.equals = function (otherVector) {
  303. return otherVector && this.x === otherVector.x && this.y === otherVector.y;
  304. };
  305. // Properties
  306. Vector2.prototype.length = function () {
  307. return Math.sqrt(this.x * this.x + this.y * this.y);
  308. };
  309. Vector2.prototype.lengthSquared = function () {
  310. return (this.x * this.x + this.y * this.y);
  311. };
  312. // Methods
  313. Vector2.prototype.normalize = function () {
  314. var len = this.length();
  315. if (len === 0)
  316. return this;
  317. var num = 1.0 / len;
  318. this.x *= num;
  319. this.y *= num;
  320. return this;
  321. };
  322. Vector2.prototype.clone = function () {
  323. return new Vector2(this.x, this.y);
  324. };
  325. // Statics
  326. Vector2.Zero = function () {
  327. return new Vector2(0, 0);
  328. };
  329. Vector2.FromArray = function (array, offset) {
  330. if (offset === void 0) { offset = 0; }
  331. return new Vector2(array[offset], array[offset + 1]);
  332. };
  333. Vector2.FromArrayToRef = function (array, offset, result) {
  334. result.x = array[offset];
  335. result.y = array[offset + 1];
  336. };
  337. Vector2.CatmullRom = function (value1, value2, value3, value4, amount) {
  338. var squared = amount * amount;
  339. var cubed = amount * squared;
  340. var x = 0.5 * ((((2.0 * value2.x) + ((-value1.x + value3.x) * amount)) + (((((2.0 * value1.x) - (5.0 * value2.x)) + (4.0 * value3.x)) - value4.x) * squared)) + ((((-value1.x + (3.0 * value2.x)) - (3.0 * value3.x)) + value4.x) * cubed));
  341. var y = 0.5 * ((((2.0 * value2.y) + ((-value1.y + value3.y) * amount)) + (((((2.0 * value1.y) - (5.0 * value2.y)) + (4.0 * value3.y)) - value4.y) * squared)) + ((((-value1.y + (3.0 * value2.y)) - (3.0 * value3.y)) + value4.y) * cubed));
  342. return new Vector2(x, y);
  343. };
  344. Vector2.Clamp = function (value, min, max) {
  345. var x = value.x;
  346. x = (x > max.x) ? max.x : x;
  347. x = (x < min.x) ? min.x : x;
  348. var y = value.y;
  349. y = (y > max.y) ? max.y : y;
  350. y = (y < min.y) ? min.y : y;
  351. return new Vector2(x, y);
  352. };
  353. Vector2.Hermite = function (value1, tangent1, value2, tangent2, amount) {
  354. var squared = amount * amount;
  355. var cubed = amount * squared;
  356. var part1 = ((2.0 * cubed) - (3.0 * squared)) + 1.0;
  357. var part2 = (-2.0 * cubed) + (3.0 * squared);
  358. var part3 = (cubed - (2.0 * squared)) + amount;
  359. var part4 = cubed - squared;
  360. var x = (((value1.x * part1) + (value2.x * part2)) + (tangent1.x * part3)) + (tangent2.x * part4);
  361. var y = (((value1.y * part1) + (value2.y * part2)) + (tangent1.y * part3)) + (tangent2.y * part4);
  362. return new Vector2(x, y);
  363. };
  364. Vector2.Lerp = function (start, end, amount) {
  365. var x = start.x + ((end.x - start.x) * amount);
  366. var y = start.y + ((end.y - start.y) * amount);
  367. return new Vector2(x, y);
  368. };
  369. Vector2.Dot = function (left, right) {
  370. return left.x * right.x + left.y * right.y;
  371. };
  372. Vector2.Normalize = function (vector) {
  373. var newVector = vector.clone();
  374. newVector.normalize();
  375. return newVector;
  376. };
  377. Vector2.Minimize = function (left, right) {
  378. var x = (left.x < right.x) ? left.x : right.x;
  379. var y = (left.y < right.y) ? left.y : right.y;
  380. return new Vector2(x, y);
  381. };
  382. Vector2.Maximize = function (left, right) {
  383. var x = (left.x > right.x) ? left.x : right.x;
  384. var y = (left.y > right.y) ? left.y : right.y;
  385. return new Vector2(x, y);
  386. };
  387. Vector2.Transform = function (vector, transformation) {
  388. var x = (vector.x * transformation.m[0]) + (vector.y * transformation.m[4]);
  389. var y = (vector.x * transformation.m[1]) + (vector.y * transformation.m[5]);
  390. return new Vector2(x, y);
  391. };
  392. Vector2.Distance = function (value1, value2) {
  393. return Math.sqrt(Vector2.DistanceSquared(value1, value2));
  394. };
  395. Vector2.DistanceSquared = function (value1, value2) {
  396. var x = value1.x - value2.x;
  397. var y = value1.y - value2.y;
  398. return (x * x) + (y * y);
  399. };
  400. return Vector2;
  401. })();
  402. BABYLON.Vector2 = Vector2;
  403. var Vector3 = (function () {
  404. function Vector3(x, y, z) {
  405. this.x = x;
  406. this.y = y;
  407. this.z = z;
  408. }
  409. Vector3.prototype.toString = function () {
  410. return "{X: " + this.x + " Y:" + this.y + " Z:" + this.z + "}";
  411. };
  412. // Operators
  413. Vector3.prototype.asArray = function () {
  414. var result = [];
  415. this.toArray(result, 0);
  416. return result;
  417. };
  418. Vector3.prototype.toArray = function (array, index) {
  419. if (index === void 0) { index = 0; }
  420. array[index] = this.x;
  421. array[index + 1] = this.y;
  422. array[index + 2] = this.z;
  423. return this;
  424. };
  425. Vector3.prototype.toQuaternion = function () {
  426. var result = new Quaternion(0, 0, 0, 1);
  427. var cosxPlusz = Math.cos((this.x + this.z) * 0.5);
  428. var sinxPlusz = Math.sin((this.x + this.z) * 0.5);
  429. var coszMinusx = Math.cos((this.z - this.x) * 0.5);
  430. var sinzMinusx = Math.sin((this.z - this.x) * 0.5);
  431. var cosy = Math.cos(this.y * 0.5);
  432. var siny = Math.sin(this.y * 0.5);
  433. result.x = coszMinusx * siny;
  434. result.y = -sinzMinusx * siny;
  435. result.z = sinxPlusz * cosy;
  436. result.w = cosxPlusz * cosy;
  437. return result;
  438. };
  439. Vector3.prototype.addInPlace = function (otherVector) {
  440. this.x += otherVector.x;
  441. this.y += otherVector.y;
  442. this.z += otherVector.z;
  443. return this;
  444. };
  445. Vector3.prototype.add = function (otherVector) {
  446. return new Vector3(this.x + otherVector.x, this.y + otherVector.y, this.z + otherVector.z);
  447. };
  448. Vector3.prototype.addToRef = function (otherVector, result) {
  449. result.x = this.x + otherVector.x;
  450. result.y = this.y + otherVector.y;
  451. result.z = this.z + otherVector.z;
  452. return this;
  453. };
  454. Vector3.prototype.subtractInPlace = function (otherVector) {
  455. this.x -= otherVector.x;
  456. this.y -= otherVector.y;
  457. this.z -= otherVector.z;
  458. return this;
  459. };
  460. Vector3.prototype.subtract = function (otherVector) {
  461. return new Vector3(this.x - otherVector.x, this.y - otherVector.y, this.z - otherVector.z);
  462. };
  463. Vector3.prototype.subtractToRef = function (otherVector, result) {
  464. result.x = this.x - otherVector.x;
  465. result.y = this.y - otherVector.y;
  466. result.z = this.z - otherVector.z;
  467. return this;
  468. };
  469. Vector3.prototype.subtractFromFloats = function (x, y, z) {
  470. return new Vector3(this.x - x, this.y - y, this.z - z);
  471. };
  472. Vector3.prototype.subtractFromFloatsToRef = function (x, y, z, result) {
  473. result.x = this.x - x;
  474. result.y = this.y - y;
  475. result.z = this.z - z;
  476. return this;
  477. };
  478. Vector3.prototype.negate = function () {
  479. return new Vector3(-this.x, -this.y, -this.z);
  480. };
  481. Vector3.prototype.scaleInPlace = function (scale) {
  482. this.x *= scale;
  483. this.y *= scale;
  484. this.z *= scale;
  485. return this;
  486. };
  487. Vector3.prototype.scale = function (scale) {
  488. return new Vector3(this.x * scale, this.y * scale, this.z * scale);
  489. };
  490. Vector3.prototype.scaleToRef = function (scale, result) {
  491. result.x = this.x * scale;
  492. result.y = this.y * scale;
  493. result.z = this.z * scale;
  494. };
  495. Vector3.prototype.equals = function (otherVector) {
  496. return otherVector && this.x === otherVector.x && this.y === otherVector.y && this.z === otherVector.z;
  497. };
  498. Vector3.prototype.equalsWithEpsilon = function (otherVector) {
  499. return Math.abs(this.x - otherVector.x) < BABYLON.Engine.Epsilon && Math.abs(this.y - otherVector.y) < BABYLON.Engine.Epsilon && Math.abs(this.z - otherVector.z) < BABYLON.Engine.Epsilon;
  500. };
  501. Vector3.prototype.equalsToFloats = function (x, y, z) {
  502. return this.x === x && this.y === y && this.z === z;
  503. };
  504. Vector3.prototype.multiplyInPlace = function (otherVector) {
  505. this.x *= otherVector.x;
  506. this.y *= otherVector.y;
  507. this.z *= otherVector.z;
  508. return this;
  509. };
  510. Vector3.prototype.multiply = function (otherVector) {
  511. return new Vector3(this.x * otherVector.x, this.y * otherVector.y, this.z * otherVector.z);
  512. };
  513. Vector3.prototype.multiplyToRef = function (otherVector, result) {
  514. result.x = this.x * otherVector.x;
  515. result.y = this.y * otherVector.y;
  516. result.z = this.z * otherVector.z;
  517. return this;
  518. };
  519. Vector3.prototype.multiplyByFloats = function (x, y, z) {
  520. return new Vector3(this.x * x, this.y * y, this.z * z);
  521. };
  522. Vector3.prototype.divide = function (otherVector) {
  523. return new Vector3(this.x / otherVector.x, this.y / otherVector.y, this.z / otherVector.z);
  524. };
  525. Vector3.prototype.divideToRef = function (otherVector, result) {
  526. result.x = this.x / otherVector.x;
  527. result.y = this.y / otherVector.y;
  528. result.z = this.z / otherVector.z;
  529. return this;
  530. };
  531. Vector3.prototype.MinimizeInPlace = function (other) {
  532. if (other.x < this.x)
  533. this.x = other.x;
  534. if (other.y < this.y)
  535. this.y = other.y;
  536. if (other.z < this.z)
  537. this.z = other.z;
  538. return this;
  539. };
  540. Vector3.prototype.MaximizeInPlace = function (other) {
  541. if (other.x > this.x)
  542. this.x = other.x;
  543. if (other.y > this.y)
  544. this.y = other.y;
  545. if (other.z > this.z)
  546. this.z = other.z;
  547. return this;
  548. };
  549. // Properties
  550. Vector3.prototype.length = function () {
  551. return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z);
  552. };
  553. Vector3.prototype.lengthSquared = function () {
  554. return (this.x * this.x + this.y * this.y + this.z * this.z);
  555. };
  556. // Methods
  557. Vector3.prototype.normalize = function () {
  558. var len = this.length();
  559. if (len === 0)
  560. return this;
  561. var num = 1.0 / len;
  562. this.x *= num;
  563. this.y *= num;
  564. this.z *= num;
  565. return this;
  566. };
  567. Vector3.prototype.clone = function () {
  568. return new Vector3(this.x, this.y, this.z);
  569. };
  570. Vector3.prototype.copyFrom = function (source) {
  571. this.x = source.x;
  572. this.y = source.y;
  573. this.z = source.z;
  574. return this;
  575. };
  576. Vector3.prototype.copyFromFloats = function (x, y, z) {
  577. this.x = x;
  578. this.y = y;
  579. this.z = z;
  580. return this;
  581. };
  582. // Statics
  583. Vector3.FromArray = function (array, offset) {
  584. if (!offset) {
  585. offset = 0;
  586. }
  587. return new Vector3(array[offset], array[offset + 1], array[offset + 2]);
  588. };
  589. Vector3.FromArrayToRef = function (array, offset, result) {
  590. result.x = array[offset];
  591. result.y = array[offset + 1];
  592. result.z = array[offset + 2];
  593. };
  594. Vector3.FromFloatArrayToRef = function (array, offset, result) {
  595. result.x = array[offset];
  596. result.y = array[offset + 1];
  597. result.z = array[offset + 2];
  598. };
  599. Vector3.FromFloatsToRef = function (x, y, z, result) {
  600. result.x = x;
  601. result.y = y;
  602. result.z = z;
  603. };
  604. Vector3.Zero = function () {
  605. return new Vector3(0, 0, 0);
  606. };
  607. Vector3.Up = function () {
  608. return new Vector3(0, 1.0, 0);
  609. };
  610. Vector3.TransformCoordinates = function (vector, transformation) {
  611. var result = Vector3.Zero();
  612. Vector3.TransformCoordinatesToRef(vector, transformation, result);
  613. return result;
  614. };
  615. Vector3.TransformCoordinatesToRef = function (vector, transformation, result) {
  616. var x = (vector.x * transformation.m[0]) + (vector.y * transformation.m[4]) + (vector.z * transformation.m[8]) + transformation.m[12];
  617. var y = (vector.x * transformation.m[1]) + (vector.y * transformation.m[5]) + (vector.z * transformation.m[9]) + transformation.m[13];
  618. var z = (vector.x * transformation.m[2]) + (vector.y * transformation.m[6]) + (vector.z * transformation.m[10]) + transformation.m[14];
  619. var w = (vector.x * transformation.m[3]) + (vector.y * transformation.m[7]) + (vector.z * transformation.m[11]) + transformation.m[15];
  620. result.x = x / w;
  621. result.y = y / w;
  622. result.z = z / w;
  623. };
  624. Vector3.TransformCoordinatesFromFloatsToRef = function (x, y, z, transformation, result) {
  625. var rx = (x * transformation.m[0]) + (y * transformation.m[4]) + (z * transformation.m[8]) + transformation.m[12];
  626. var ry = (x * transformation.m[1]) + (y * transformation.m[5]) + (z * transformation.m[9]) + transformation.m[13];
  627. var rz = (x * transformation.m[2]) + (y * transformation.m[6]) + (z * transformation.m[10]) + transformation.m[14];
  628. var rw = (x * transformation.m[3]) + (y * transformation.m[7]) + (z * transformation.m[11]) + transformation.m[15];
  629. result.x = rx / rw;
  630. result.y = ry / rw;
  631. result.z = rz / rw;
  632. };
  633. Vector3.TransformNormal = function (vector, transformation) {
  634. var result = Vector3.Zero();
  635. Vector3.TransformNormalToRef(vector, transformation, result);
  636. return result;
  637. };
  638. Vector3.TransformNormalToRef = function (vector, transformation, result) {
  639. result.x = (vector.x * transformation.m[0]) + (vector.y * transformation.m[4]) + (vector.z * transformation.m[8]);
  640. result.y = (vector.x * transformation.m[1]) + (vector.y * transformation.m[5]) + (vector.z * transformation.m[9]);
  641. result.z = (vector.x * transformation.m[2]) + (vector.y * transformation.m[6]) + (vector.z * transformation.m[10]);
  642. };
  643. Vector3.TransformNormalFromFloatsToRef = function (x, y, z, transformation, result) {
  644. result.x = (x * transformation.m[0]) + (y * transformation.m[4]) + (z * transformation.m[8]);
  645. result.y = (x * transformation.m[1]) + (y * transformation.m[5]) + (z * transformation.m[9]);
  646. result.z = (x * transformation.m[2]) + (y * transformation.m[6]) + (z * transformation.m[10]);
  647. };
  648. Vector3.CatmullRom = function (value1, value2, value3, value4, amount) {
  649. var squared = amount * amount;
  650. var cubed = amount * squared;
  651. var x = 0.5 * ((((2.0 * value2.x) + ((-value1.x + value3.x) * amount)) + (((((2.0 * value1.x) - (5.0 * value2.x)) + (4.0 * value3.x)) - value4.x) * squared)) + ((((-value1.x + (3.0 * value2.x)) - (3.0 * value3.x)) + value4.x) * cubed));
  652. var y = 0.5 * ((((2.0 * value2.y) + ((-value1.y + value3.y) * amount)) + (((((2.0 * value1.y) - (5.0 * value2.y)) + (4.0 * value3.y)) - value4.y) * squared)) + ((((-value1.y + (3.0 * value2.y)) - (3.0 * value3.y)) + value4.y) * cubed));
  653. var z = 0.5 * ((((2.0 * value2.z) + ((-value1.z + value3.z) * amount)) + (((((2.0 * value1.z) - (5.0 * value2.z)) + (4.0 * value3.z)) - value4.z) * squared)) + ((((-value1.z + (3.0 * value2.z)) - (3.0 * value3.z)) + value4.z) * cubed));
  654. return new Vector3(x, y, z);
  655. };
  656. Vector3.Clamp = function (value, min, max) {
  657. var x = value.x;
  658. x = (x > max.x) ? max.x : x;
  659. x = (x < min.x) ? min.x : x;
  660. var y = value.y;
  661. y = (y > max.y) ? max.y : y;
  662. y = (y < min.y) ? min.y : y;
  663. var z = value.z;
  664. z = (z > max.z) ? max.z : z;
  665. z = (z < min.z) ? min.z : z;
  666. return new Vector3(x, y, z);
  667. };
  668. Vector3.Hermite = function (value1, tangent1, value2, tangent2, amount) {
  669. var squared = amount * amount;
  670. var cubed = amount * squared;
  671. var part1 = ((2.0 * cubed) - (3.0 * squared)) + 1.0;
  672. var part2 = (-2.0 * cubed) + (3.0 * squared);
  673. var part3 = (cubed - (2.0 * squared)) + amount;
  674. var part4 = cubed - squared;
  675. var x = (((value1.x * part1) + (value2.x * part2)) + (tangent1.x * part3)) + (tangent2.x * part4);
  676. var y = (((value1.y * part1) + (value2.y * part2)) + (tangent1.y * part3)) + (tangent2.y * part4);
  677. var z = (((value1.z * part1) + (value2.z * part2)) + (tangent1.z * part3)) + (tangent2.z * part4);
  678. return new Vector3(x, y, z);
  679. };
  680. Vector3.Lerp = function (start, end, amount) {
  681. var x = start.x + ((end.x - start.x) * amount);
  682. var y = start.y + ((end.y - start.y) * amount);
  683. var z = start.z + ((end.z - start.z) * amount);
  684. return new Vector3(x, y, z);
  685. };
  686. Vector3.Dot = function (left, right) {
  687. return (left.x * right.x + left.y * right.y + left.z * right.z);
  688. };
  689. Vector3.Cross = function (left, right) {
  690. var result = Vector3.Zero();
  691. Vector3.CrossToRef(left, right, result);
  692. return result;
  693. };
  694. Vector3.CrossToRef = function (left, right, result) {
  695. result.x = left.y * right.z - left.z * right.y;
  696. result.y = left.z * right.x - left.x * right.z;
  697. result.z = left.x * right.y - left.y * right.x;
  698. };
  699. Vector3.Normalize = function (vector) {
  700. var result = Vector3.Zero();
  701. Vector3.NormalizeToRef(vector, result);
  702. return result;
  703. };
  704. Vector3.NormalizeToRef = function (vector, result) {
  705. result.copyFrom(vector);
  706. result.normalize();
  707. };
  708. Vector3.Project = function (vector, world, transform, viewport) {
  709. var cw = viewport.width;
  710. var ch = viewport.height;
  711. var cx = viewport.x;
  712. var cy = viewport.y;
  713. var viewportMatrix = Matrix.FromValues(cw / 2.0, 0, 0, 0, 0, -ch / 2.0, 0, 0, 0, 0, 1, 0, cx + cw / 2.0, ch / 2.0 + cy, 0, 1);
  714. var finalMatrix = world.multiply(transform).multiply(viewportMatrix);
  715. return Vector3.TransformCoordinates(vector, finalMatrix);
  716. };
  717. Vector3.UnprojectFromTransform = function (source, viewportWidth, viewportHeight, world, transform) {
  718. var matrix = world.multiply(transform);
  719. matrix.invert();
  720. source.x = source.x / viewportWidth * 2 - 1;
  721. source.y = -(source.y / viewportHeight * 2 - 1);
  722. var vector = Vector3.TransformCoordinates(source, matrix);
  723. var num = source.x * matrix.m[3] + source.y * matrix.m[7] + source.z * matrix.m[11] + matrix.m[15];
  724. if (BABYLON.Tools.WithinEpsilon(num, 1.0)) {
  725. vector = vector.scale(1.0 / num);
  726. }
  727. return vector;
  728. };
  729. Vector3.Unproject = function (source, viewportWidth, viewportHeight, world, view, projection) {
  730. var matrix = world.multiply(view).multiply(projection);
  731. matrix.invert();
  732. source.x = source.x / viewportWidth * 2 - 1;
  733. source.y = -(source.y / viewportHeight * 2 - 1);
  734. var vector = Vector3.TransformCoordinates(source, matrix);
  735. var num = source.x * matrix.m[3] + source.y * matrix.m[7] + source.z * matrix.m[11] + matrix.m[15];
  736. if (BABYLON.Tools.WithinEpsilon(num, 1.0)) {
  737. vector = vector.scale(1.0 / num);
  738. }
  739. return vector;
  740. };
  741. Vector3.Minimize = function (left, right) {
  742. var min = left.clone();
  743. min.MinimizeInPlace(right);
  744. return min;
  745. };
  746. Vector3.Maximize = function (left, right) {
  747. var max = left.clone();
  748. max.MaximizeInPlace(right);
  749. return max;
  750. };
  751. Vector3.Distance = function (value1, value2) {
  752. return Math.sqrt(Vector3.DistanceSquared(value1, value2));
  753. };
  754. Vector3.DistanceSquared = function (value1, value2) {
  755. var x = value1.x - value2.x;
  756. var y = value1.y - value2.y;
  757. var z = value1.z - value2.z;
  758. return (x * x) + (y * y) + (z * z);
  759. };
  760. Vector3.Center = function (value1, value2) {
  761. var center = value1.add(value2);
  762. center.scaleInPlace(0.5);
  763. return center;
  764. };
  765. return Vector3;
  766. })();
  767. BABYLON.Vector3 = Vector3;
  768. //Vector4 class created for EulerAngle class conversion to Quaternion
  769. var Vector4 = (function () {
  770. function Vector4(x, y, z, w) {
  771. this.x = x;
  772. this.y = y;
  773. this.z = z;
  774. this.w = w;
  775. }
  776. Vector4.prototype.toString = function () {
  777. return "{X: " + this.x + " Y:" + this.y + " Z:" + this.z + "W:" + this.w + "}";
  778. };
  779. // Operators
  780. Vector4.prototype.asArray = function () {
  781. var result = [];
  782. this.toArray(result, 0);
  783. return result;
  784. };
  785. Vector4.prototype.toArray = function (array, index) {
  786. if (index === undefined) {
  787. index = 0;
  788. }
  789. array[index] = this.x;
  790. array[index + 1] = this.y;
  791. array[index + 2] = this.z;
  792. array[index + 3] = this.w;
  793. return this;
  794. };
  795. Vector4.prototype.addInPlace = function (otherVector) {
  796. this.x += otherVector.x;
  797. this.y += otherVector.y;
  798. this.z += otherVector.z;
  799. this.w += otherVector.w;
  800. return this;
  801. };
  802. Vector4.prototype.add = function (otherVector) {
  803. return new Vector4(this.x + otherVector.x, this.y + otherVector.y, this.z + otherVector.z, this.w + otherVector.w);
  804. };
  805. Vector4.prototype.addToRef = function (otherVector, result) {
  806. result.x = this.x + otherVector.x;
  807. result.y = this.y + otherVector.y;
  808. result.z = this.z + otherVector.z;
  809. result.w = this.w + otherVector.w;
  810. return this;
  811. };
  812. Vector4.prototype.subtractInPlace = function (otherVector) {
  813. this.x -= otherVector.x;
  814. this.y -= otherVector.y;
  815. this.z -= otherVector.z;
  816. this.w -= otherVector.w;
  817. return this;
  818. };
  819. Vector4.prototype.subtract = function (otherVector) {
  820. return new Vector4(this.x - otherVector.x, this.y - otherVector.y, this.z - otherVector.z, this.w - otherVector.w);
  821. };
  822. Vector4.prototype.subtractToRef = function (otherVector, result) {
  823. result.x = this.x - otherVector.x;
  824. result.y = this.y - otherVector.y;
  825. result.z = this.z - otherVector.z;
  826. result.w = this.w - otherVector.w;
  827. return this;
  828. };
  829. Vector4.prototype.subtractFromFloats = function (x, y, z, w) {
  830. return new Vector4(this.x - x, this.y - y, this.z - z, this.w - w);
  831. };
  832. Vector4.prototype.subtractFromFloatsToRef = function (x, y, z, w, result) {
  833. result.x = this.x - x;
  834. result.y = this.y - y;
  835. result.z = this.z - z;
  836. result.w = this.w - w;
  837. return this;
  838. };
  839. Vector4.prototype.negate = function () {
  840. return new Vector4(-this.x, -this.y, -this.z, -this.w);
  841. };
  842. Vector4.prototype.scaleInPlace = function (scale) {
  843. this.x *= scale;
  844. this.y *= scale;
  845. this.z *= scale;
  846. this.w *= scale;
  847. return this;
  848. };
  849. Vector4.prototype.scale = function (scale) {
  850. return new Vector4(this.x * scale, this.y * scale, this.z * scale, this.w * scale);
  851. };
  852. Vector4.prototype.scaleToRef = function (scale, result) {
  853. result.x = this.x * scale;
  854. result.y = this.y * scale;
  855. result.z = this.z * scale;
  856. result.w = this.w * scale;
  857. };
  858. Vector4.prototype.equals = function (otherVector) {
  859. return otherVector && this.x === otherVector.x && this.y === otherVector.y && this.z === otherVector.z && this.w === otherVector.w;
  860. };
  861. Vector4.prototype.equalsWithEpsilon = function (otherVector) {
  862. return Math.abs(this.x - otherVector.x) < BABYLON.Engine.Epsilon && Math.abs(this.y - otherVector.y) < BABYLON.Engine.Epsilon && Math.abs(this.z - otherVector.z) < BABYLON.Engine.Epsilon && Math.abs(this.w - otherVector.w) < BABYLON.Engine.Epsilon;
  863. };
  864. Vector4.prototype.equalsToFloats = function (x, y, z, w) {
  865. return this.x === x && this.y === y && this.z === z && this.w === w;
  866. };
  867. Vector4.prototype.multiplyInPlace = function (otherVector) {
  868. this.x *= otherVector.x;
  869. this.y *= otherVector.y;
  870. this.z *= otherVector.z;
  871. this.w *= otherVector.w;
  872. return this;
  873. };
  874. Vector4.prototype.multiply = function (otherVector) {
  875. return new Vector4(this.x * otherVector.x, this.y * otherVector.y, this.z * otherVector.z, this.w * otherVector.w);
  876. };
  877. Vector4.prototype.multiplyToRef = function (otherVector, result) {
  878. result.x = this.x * otherVector.x;
  879. result.y = this.y * otherVector.y;
  880. result.z = this.z * otherVector.z;
  881. result.w = this.w * otherVector.w;
  882. return this;
  883. };
  884. Vector4.prototype.multiplyByFloats = function (x, y, z, w) {
  885. return new Vector4(this.x * x, this.y * y, this.z * z, this.w * w);
  886. };
  887. Vector4.prototype.divide = function (otherVector) {
  888. return new Vector4(this.x / otherVector.x, this.y / otherVector.y, this.z / otherVector.z, this.w / otherVector.w);
  889. };
  890. Vector4.prototype.divideToRef = function (otherVector, result) {
  891. result.x = this.x / otherVector.x;
  892. result.y = this.y / otherVector.y;
  893. result.z = this.z / otherVector.z;
  894. result.w = this.w / otherVector.w;
  895. return this;
  896. };
  897. Vector4.prototype.MinimizeInPlace = function (other) {
  898. if (other.x < this.x)
  899. this.x = other.x;
  900. if (other.y < this.y)
  901. this.y = other.y;
  902. if (other.z < this.z)
  903. this.z = other.z;
  904. if (other.w < this.w)
  905. this.w = other.w;
  906. return this;
  907. };
  908. Vector4.prototype.MaximizeInPlace = function (other) {
  909. if (other.x > this.x)
  910. this.x = other.x;
  911. if (other.y > this.y)
  912. this.y = other.y;
  913. if (other.z > this.z)
  914. this.z = other.z;
  915. if (other.w > this.w)
  916. this.w = other.w;
  917. return this;
  918. };
  919. // Properties
  920. Vector4.prototype.length = function () {
  921. return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z + this.w * this.w);
  922. };
  923. Vector4.prototype.lengthSquared = function () {
  924. return (this.x * this.x + this.y * this.y + this.z * this.z + this.w * this.w);
  925. };
  926. // Methods
  927. Vector4.prototype.normalize = function () {
  928. var len = this.length();
  929. if (len === 0)
  930. return this;
  931. var num = 1.0 / len;
  932. this.x *= num;
  933. this.y *= num;
  934. this.z *= num;
  935. this.w *= num;
  936. return this;
  937. };
  938. Vector4.prototype.clone = function () {
  939. return new Vector4(this.x, this.y, this.z, this.w);
  940. };
  941. Vector4.prototype.copyFrom = function (source) {
  942. this.x = source.x;
  943. this.y = source.y;
  944. this.z = source.z;
  945. this.w = source.w;
  946. return this;
  947. };
  948. Vector4.prototype.copyFromFloats = function (x, y, z, w) {
  949. this.x = x;
  950. this.y = y;
  951. this.z = z;
  952. this.w = w;
  953. return this;
  954. };
  955. // Statics
  956. Vector4.FromArray = function (array, offset) {
  957. if (!offset) {
  958. offset = 0;
  959. }
  960. return new Vector4(array[offset], array[offset + 1], array[offset + 2], array[offset + 3]);
  961. };
  962. Vector4.FromArrayToRef = function (array, offset, result) {
  963. result.x = array[offset];
  964. result.y = array[offset + 1];
  965. result.z = array[offset + 2];
  966. result.w = array[offset + 3];
  967. };
  968. Vector4.FromFloatArrayToRef = function (array, offset, result) {
  969. result.x = array[offset];
  970. result.y = array[offset + 1];
  971. result.z = array[offset + 2];
  972. result.w = array[offset + 3];
  973. };
  974. Vector4.FromFloatsToRef = function (x, y, z, w, result) {
  975. result.x = x;
  976. result.y = y;
  977. result.z = z;
  978. result.w = w;
  979. };
  980. Vector4.Zero = function () {
  981. return new Vector4(0, 0, 0, 0);
  982. };
  983. Vector4.Normalize = function (vector) {
  984. var result = Vector4.Zero();
  985. Vector4.NormalizeToRef(vector, result);
  986. return result;
  987. };
  988. Vector4.NormalizeToRef = function (vector, result) {
  989. result.copyFrom(vector);
  990. result.normalize();
  991. };
  992. Vector4.Minimize = function (left, right) {
  993. var min = left.clone();
  994. min.MinimizeInPlace(right);
  995. return min;
  996. };
  997. Vector4.Maximize = function (left, right) {
  998. var max = left.clone();
  999. max.MaximizeInPlace(right);
  1000. return max;
  1001. };
  1002. Vector4.Distance = function (value1, value2) {
  1003. return Math.sqrt(Vector4.DistanceSquared(value1, value2));
  1004. };
  1005. Vector4.DistanceSquared = function (value1, value2) {
  1006. var x = value1.x - value2.x;
  1007. var y = value1.y - value2.y;
  1008. var z = value1.z - value2.z;
  1009. var w = value1.w - value2.w;
  1010. return (x * x) + (y * y) + (z * z) + (w * w);
  1011. };
  1012. Vector4.Center = function (value1, value2) {
  1013. var center = value1.add(value2);
  1014. center.scaleInPlace(0.5);
  1015. return center;
  1016. };
  1017. return Vector4;
  1018. })();
  1019. BABYLON.Vector4 = Vector4;
  1020. var Quaternion = (function () {
  1021. function Quaternion(x, y, z, w) {
  1022. if (x === void 0) { x = 0; }
  1023. if (y === void 0) { y = 0; }
  1024. if (z === void 0) { z = 0; }
  1025. if (w === void 0) { w = 1; }
  1026. this.x = x;
  1027. this.y = y;
  1028. this.z = z;
  1029. this.w = w;
  1030. }
  1031. Quaternion.prototype.toString = function () {
  1032. return "{X: " + this.x + " Y:" + this.y + " Z:" + this.z + " W:" + this.w + "}";
  1033. };
  1034. Quaternion.prototype.asArray = function () {
  1035. return [this.x, this.y, this.z, this.w];
  1036. };
  1037. Quaternion.prototype.equals = function (otherQuaternion) {
  1038. return otherQuaternion && this.x === otherQuaternion.x && this.y === otherQuaternion.y && this.z === otherQuaternion.z && this.w === otherQuaternion.w;
  1039. };
  1040. Quaternion.prototype.clone = function () {
  1041. return new Quaternion(this.x, this.y, this.z, this.w);
  1042. };
  1043. Quaternion.prototype.copyFrom = function (other) {
  1044. this.x = other.x;
  1045. this.y = other.y;
  1046. this.z = other.z;
  1047. this.w = other.w;
  1048. return this;
  1049. };
  1050. Quaternion.prototype.copyFromFloats = function (x, y, z, w) {
  1051. this.x = x;
  1052. this.y = y;
  1053. this.z = z;
  1054. this.w = w;
  1055. return this;
  1056. };
  1057. Quaternion.prototype.add = function (other) {
  1058. return new Quaternion(this.x + other.x, this.y + other.y, this.z + other.z, this.w + other.w);
  1059. };
  1060. Quaternion.prototype.subtract = function (other) {
  1061. return new Quaternion(this.x - other.x, this.y - other.y, this.z - other.z, this.w - other.w);
  1062. };
  1063. Quaternion.prototype.scale = function (value) {
  1064. return new Quaternion(this.x * value, this.y * value, this.z * value, this.w * value);
  1065. };
  1066. Quaternion.prototype.multiply = function (q1) {
  1067. var result = new Quaternion(0, 0, 0, 1.0);
  1068. this.multiplyToRef(q1, result);
  1069. return result;
  1070. };
  1071. Quaternion.prototype.multiplyToRef = function (q1, result) {
  1072. result.x = this.x * q1.w + this.y * q1.z - this.z * q1.y + this.w * q1.x;
  1073. result.y = -this.x * q1.z + this.y * q1.w + this.z * q1.x + this.w * q1.y;
  1074. result.z = this.x * q1.y - this.y * q1.x + this.z * q1.w + this.w * q1.z;
  1075. result.w = -this.x * q1.x - this.y * q1.y - this.z * q1.z + this.w * q1.w;
  1076. return this;
  1077. };
  1078. Quaternion.prototype.length = function () {
  1079. return Math.sqrt((this.x * this.x) + (this.y * this.y) + (this.z * this.z) + (this.w * this.w));
  1080. };
  1081. Quaternion.prototype.normalize = function () {
  1082. var length = 1.0 / this.length();
  1083. this.x *= length;
  1084. this.y *= length;
  1085. this.z *= length;
  1086. this.w *= length;
  1087. return this;
  1088. };
  1089. Quaternion.prototype.toEulerAngles = function () {
  1090. var result = Vector3.Zero();
  1091. this.toEulerAnglesToRef(result);
  1092. return result;
  1093. };
  1094. Quaternion.prototype.toEulerAnglesToRef = function (result) {
  1095. //result is an EulerAngles in the in the z-x-z convention
  1096. var qx = this.x;
  1097. var qy = this.y;
  1098. var qz = this.z;
  1099. var qw = this.w;
  1100. var qxy = qx * qy;
  1101. var qxz = qx * qz;
  1102. var qwy = qw * qy;
  1103. var qwz = qw * qz;
  1104. var qwx = qw * qx;
  1105. var qyz = qy * qz;
  1106. var sqx = qx * qx;
  1107. var sqy = qy * qy;
  1108. var determinant = sqx + sqy;
  1109. if (determinant !== 0.000 && determinant !== 1.000) {
  1110. result.x = Math.atan2(qxz + qwy, qwx - qyz);
  1111. result.y = Math.acos(1 - 2 * determinant);
  1112. result.z = Math.atan2(qxz - qwy, qwx + qyz);
  1113. }
  1114. else {
  1115. if (determinant === 0.0) {
  1116. result.x = 0.0;
  1117. result.y = 0.0;
  1118. result.z = Math.atan2(qxy - qwz, 0.5 - sqy - qz * qz); //actually, degeneracy gives us choice with x+z=Math.atan2(qxy-qwz,0.5-sqy-qz*qz)
  1119. }
  1120. else {
  1121. result.x = Math.atan2(qxy - qwz, 0.5 - sqy - qz * qz); //actually, degeneracy gives us choice with x-z=Math.atan2(qxy-qwz,0.5-sqy-qz*qz)
  1122. result.y = Math.PI;
  1123. result.z = 0.0;
  1124. }
  1125. }
  1126. return this;
  1127. };
  1128. Quaternion.prototype.toRotationMatrix = function (result) {
  1129. var xx = this.x * this.x;
  1130. var yy = this.y * this.y;
  1131. var zz = this.z * this.z;
  1132. var xy = this.x * this.y;
  1133. var zw = this.z * this.w;
  1134. var zx = this.z * this.x;
  1135. var yw = this.y * this.w;
  1136. var yz = this.y * this.z;
  1137. var xw = this.x * this.w;
  1138. result.m[0] = 1.0 - (2.0 * (yy + zz));
  1139. result.m[1] = 2.0 * (xy + zw);
  1140. result.m[2] = 2.0 * (zx - yw);
  1141. result.m[3] = 0;
  1142. result.m[4] = 2.0 * (xy - zw);
  1143. result.m[5] = 1.0 - (2.0 * (zz + xx));
  1144. result.m[6] = 2.0 * (yz + xw);
  1145. result.m[7] = 0;
  1146. result.m[8] = 2.0 * (zx + yw);
  1147. result.m[9] = 2.0 * (yz - xw);
  1148. result.m[10] = 1.0 - (2.0 * (yy + xx));
  1149. result.m[11] = 0;
  1150. result.m[12] = 0;
  1151. result.m[13] = 0;
  1152. result.m[14] = 0;
  1153. result.m[15] = 1.0;
  1154. return this;
  1155. };
  1156. Quaternion.prototype.fromRotationMatrix = function (matrix) {
  1157. var data = matrix.m;
  1158. var m11 = data[0], m12 = data[4], m13 = data[8];
  1159. var m21 = data[1], m22 = data[5], m23 = data[9];
  1160. var m31 = data[2], m32 = data[6], m33 = data[10];
  1161. var trace = m11 + m22 + m33;
  1162. var s;
  1163. if (trace > 0) {
  1164. s = 0.5 / Math.sqrt(trace + 1.0);
  1165. this.w = 0.25 / s;
  1166. this.x = (m32 - m23) * s;
  1167. this.y = (m13 - m31) * s;
  1168. this.z = (m21 - m12) * s;
  1169. return this;
  1170. }
  1171. if (m11 > m22 && m11 > m33) {
  1172. s = 2.0 * Math.sqrt(1.0 + m11 - m22 - m33);
  1173. this.w = (m32 - m23) / s;
  1174. this.x = 0.25 * s;
  1175. this.y = (m12 + m21) / s;
  1176. this.z = (m13 + m31) / s;
  1177. return this;
  1178. }
  1179. if (m22 > m33) {
  1180. s = 2.0 * Math.sqrt(1.0 + m22 - m11 - m33);
  1181. this.w = (m13 - m31) / s;
  1182. this.x = (m12 + m21) / s;
  1183. this.y = 0.25 * s;
  1184. this.z = (m23 + m32) / s;
  1185. return this;
  1186. }
  1187. s = 2.0 * Math.sqrt(1.0 + m33 - m11 - m22);
  1188. this.w = (m21 - m12) / s;
  1189. this.x = (m13 + m31) / s;
  1190. this.y = (m23 + m32) / s;
  1191. this.z = 0.25 * s;
  1192. return this;
  1193. };
  1194. // Statics
  1195. Quaternion.Inverse = function (q) {
  1196. return new Quaternion(-q.x, -q.y, -q.z, q.w);
  1197. };
  1198. Quaternion.Identity = function () {
  1199. return new Quaternion(0, 0, 0, 1);
  1200. };
  1201. Quaternion.RotationAxis = function (axis, angle) {
  1202. var result = new Quaternion();
  1203. var sin = Math.sin(angle / 2);
  1204. result.w = Math.cos(angle / 2);
  1205. result.x = axis.x * sin;
  1206. result.y = axis.y * sin;
  1207. result.z = axis.z * sin;
  1208. return result;
  1209. };
  1210. Quaternion.FromArray = function (array, offset) {
  1211. if (!offset) {
  1212. offset = 0;
  1213. }
  1214. return new Quaternion(array[offset], array[offset + 1], array[offset + 2], array[offset + 3]);
  1215. };
  1216. Quaternion.RotationYawPitchRoll = function (yaw, pitch, roll) {
  1217. var result = new Quaternion();
  1218. Quaternion.RotationYawPitchRollToRef(yaw, pitch, roll, result);
  1219. return result;
  1220. };
  1221. Quaternion.RotationYawPitchRollToRef = function (yaw, pitch, roll, result) {
  1222. var halfRoll = roll * 0.5;
  1223. var halfPitch = pitch * 0.5;
  1224. var halfYaw = yaw * 0.5;
  1225. var sinRoll = Math.sin(halfRoll);
  1226. var cosRoll = Math.cos(halfRoll);
  1227. var sinPitch = Math.sin(halfPitch);
  1228. var cosPitch = Math.cos(halfPitch);
  1229. var sinYaw = Math.sin(halfYaw);
  1230. var cosYaw = Math.cos(halfYaw);
  1231. result.x = (cosYaw * sinPitch * cosRoll) + (sinYaw * cosPitch * sinRoll);
  1232. result.y = (sinYaw * cosPitch * cosRoll) - (cosYaw * sinPitch * sinRoll);
  1233. result.z = (cosYaw * cosPitch * sinRoll) - (sinYaw * sinPitch * cosRoll);
  1234. result.w = (cosYaw * cosPitch * cosRoll) + (sinYaw * sinPitch * sinRoll);
  1235. };
  1236. Quaternion.Slerp = function (left, right, amount) {
  1237. var num2;
  1238. var num3;
  1239. var num = amount;
  1240. var num4 = (((left.x * right.x) + (left.y * right.y)) + (left.z * right.z)) + (left.w * right.w);
  1241. var flag = false;
  1242. if (num4 < 0) {
  1243. flag = true;
  1244. num4 = -num4;
  1245. }
  1246. if (num4 > 0.999999) {
  1247. num3 = 1 - num;
  1248. num2 = flag ? -num : num;
  1249. }
  1250. else {
  1251. var num5 = Math.acos(num4);
  1252. var num6 = (1.0 / Math.sin(num5));
  1253. num3 = (Math.sin((1.0 - num) * num5)) * num6;
  1254. num2 = flag ? ((-Math.sin(num * num5)) * num6) : ((Math.sin(num * num5)) * num6);
  1255. }
  1256. return new Quaternion((num3 * left.x) + (num2 * right.x), (num3 * left.y) + (num2 * right.y), (num3 * left.z) + (num2 * right.z), (num3 * left.w) + (num2 * right.w));
  1257. };
  1258. return Quaternion;
  1259. })();
  1260. BABYLON.Quaternion = Quaternion;
  1261. var Matrix = (function () {
  1262. function Matrix() {
  1263. this.m = new Float32Array(16);
  1264. }
  1265. // Properties
  1266. Matrix.prototype.isIdentity = function () {
  1267. if (this.m[0] !== 1.0 || this.m[5] !== 1.0 || this.m[10] !== 1.0 || this.m[15] !== 1.0)
  1268. return false;
  1269. if (this.m[1] !== 0.0 || this.m[2] !== 0.0 || this.m[3] !== 0.0 || this.m[4] !== 0.0 || this.m[6] !== 0.0 || this.m[7] !== 0.0 || this.m[8] !== 0.0 || this.m[9] !== 0.0 || this.m[11] !== 0.0 || this.m[12] !== 0.0 || this.m[13] !== 0.0 || this.m[14] !== 0.0)
  1270. return false;
  1271. return true;
  1272. };
  1273. Matrix.prototype.determinant = function () {
  1274. var temp1 = (this.m[10] * this.m[15]) - (this.m[11] * this.m[14]);
  1275. var temp2 = (this.m[9] * this.m[15]) - (this.m[11] * this.m[13]);
  1276. var temp3 = (this.m[9] * this.m[14]) - (this.m[10] * this.m[13]);
  1277. var temp4 = (this.m[8] * this.m[15]) - (this.m[11] * this.m[12]);
  1278. var temp5 = (this.m[8] * this.m[14]) - (this.m[10] * this.m[12]);
  1279. var temp6 = (this.m[8] * this.m[13]) - (this.m[9] * this.m[12]);
  1280. return ((((this.m[0] * (((this.m[5] * temp1) - (this.m[6] * temp2)) + (this.m[7] * temp3))) - (this.m[1] * (((this.m[4] * temp1) - (this.m[6] * temp4)) + (this.m[7] * temp5)))) + (this.m[2] * (((this.m[4] * temp2) - (this.m[5] * temp4)) + (this.m[7] * temp6)))) - (this.m[3] * (((this.m[4] * temp3) - (this.m[5] * temp5)) + (this.m[6] * temp6))));
  1281. };
  1282. // Methods
  1283. Matrix.prototype.toArray = function () {
  1284. return this.m;
  1285. };
  1286. Matrix.prototype.asArray = function () {
  1287. return this.toArray();
  1288. };
  1289. Matrix.prototype.invert = function () {
  1290. this.invertToRef(this);
  1291. return this;
  1292. };
  1293. Matrix.prototype.invertToRef = function (other) {
  1294. var l1 = this.m[0];
  1295. var l2 = this.m[1];
  1296. var l3 = this.m[2];
  1297. var l4 = this.m[3];
  1298. var l5 = this.m[4];
  1299. var l6 = this.m[5];
  1300. var l7 = this.m[6];
  1301. var l8 = this.m[7];
  1302. var l9 = this.m[8];
  1303. var l10 = this.m[9];
  1304. var l11 = this.m[10];
  1305. var l12 = this.m[11];
  1306. var l13 = this.m[12];
  1307. var l14 = this.m[13];
  1308. var l15 = this.m[14];
  1309. var l16 = this.m[15];
  1310. var l17 = (l11 * l16) - (l12 * l15);
  1311. var l18 = (l10 * l16) - (l12 * l14);
  1312. var l19 = (l10 * l15) - (l11 * l14);
  1313. var l20 = (l9 * l16) - (l12 * l13);
  1314. var l21 = (l9 * l15) - (l11 * l13);
  1315. var l22 = (l9 * l14) - (l10 * l13);
  1316. var l23 = ((l6 * l17) - (l7 * l18)) + (l8 * l19);
  1317. var l24 = -(((l5 * l17) - (l7 * l20)) + (l8 * l21));
  1318. var l25 = ((l5 * l18) - (l6 * l20)) + (l8 * l22);
  1319. var l26 = -(((l5 * l19) - (l6 * l21)) + (l7 * l22));
  1320. var l27 = 1.0 / ((((l1 * l23) + (l2 * l24)) + (l3 * l25)) + (l4 * l26));
  1321. var l28 = (l7 * l16) - (l8 * l15);
  1322. var l29 = (l6 * l16) - (l8 * l14);
  1323. var l30 = (l6 * l15) - (l7 * l14);
  1324. var l31 = (l5 * l16) - (l8 * l13);
  1325. var l32 = (l5 * l15) - (l7 * l13);
  1326. var l33 = (l5 * l14) - (l6 * l13);
  1327. var l34 = (l7 * l12) - (l8 * l11);
  1328. var l35 = (l6 * l12) - (l8 * l10);
  1329. var l36 = (l6 * l11) - (l7 * l10);
  1330. var l37 = (l5 * l12) - (l8 * l9);
  1331. var l38 = (l5 * l11) - (l7 * l9);
  1332. var l39 = (l5 * l10) - (l6 * l9);
  1333. other.m[0] = l23 * l27;
  1334. other.m[4] = l24 * l27;
  1335. other.m[8] = l25 * l27;
  1336. other.m[12] = l26 * l27;
  1337. other.m[1] = -(((l2 * l17) - (l3 * l18)) + (l4 * l19)) * l27;
  1338. other.m[5] = (((l1 * l17) - (l3 * l20)) + (l4 * l21)) * l27;
  1339. other.m[9] = -(((l1 * l18) - (l2 * l20)) + (l4 * l22)) * l27;
  1340. other.m[13] = (((l1 * l19) - (l2 * l21)) + (l3 * l22)) * l27;
  1341. other.m[2] = (((l2 * l28) - (l3 * l29)) + (l4 * l30)) * l27;
  1342. other.m[6] = -(((l1 * l28) - (l3 * l31)) + (l4 * l32)) * l27;
  1343. other.m[10] = (((l1 * l29) - (l2 * l31)) + (l4 * l33)) * l27;
  1344. other.m[14] = -(((l1 * l30) - (l2 * l32)) + (l3 * l33)) * l27;
  1345. other.m[3] = -(((l2 * l34) - (l3 * l35)) + (l4 * l36)) * l27;
  1346. other.m[7] = (((l1 * l34) - (l3 * l37)) + (l4 * l38)) * l27;
  1347. other.m[11] = -(((l1 * l35) - (l2 * l37)) + (l4 * l39)) * l27;
  1348. other.m[15] = (((l1 * l36) - (l2 * l38)) + (l3 * l39)) * l27;
  1349. return this;
  1350. };
  1351. Matrix.prototype.setTranslation = function (vector3) {
  1352. this.m[12] = vector3.x;
  1353. this.m[13] = vector3.y;
  1354. this.m[14] = vector3.z;
  1355. return this;
  1356. };
  1357. Matrix.prototype.multiply = function (other) {
  1358. var result = new Matrix();
  1359. this.multiplyToRef(other, result);
  1360. return result;
  1361. };
  1362. Matrix.prototype.copyFrom = function (other) {
  1363. for (var index = 0; index < 16; index++) {
  1364. this.m[index] = other.m[index];
  1365. }
  1366. return this;
  1367. };
  1368. Matrix.prototype.copyToArray = function (array, offset) {
  1369. if (offset === void 0) { offset = 0; }
  1370. for (var index = 0; index < 16; index++) {
  1371. array[offset + index] = this.m[index];
  1372. }
  1373. return this;
  1374. };
  1375. Matrix.prototype.multiplyToRef = function (other, result) {
  1376. this.multiplyToArray(other, result.m, 0);
  1377. return this;
  1378. };
  1379. Matrix.prototype.multiplyToArray = function (other, result, offset) {
  1380. var tm0 = this.m[0];
  1381. var tm1 = this.m[1];
  1382. var tm2 = this.m[2];
  1383. var tm3 = this.m[3];
  1384. var tm4 = this.m[4];
  1385. var tm5 = this.m[5];
  1386. var tm6 = this.m[6];
  1387. var tm7 = this.m[7];
  1388. var tm8 = this.m[8];
  1389. var tm9 = this.m[9];
  1390. var tm10 = this.m[10];
  1391. var tm11 = this.m[11];
  1392. var tm12 = this.m[12];
  1393. var tm13 = this.m[13];
  1394. var tm14 = this.m[14];
  1395. var tm15 = this.m[15];
  1396. var om0 = other.m[0];
  1397. var om1 = other.m[1];
  1398. var om2 = other.m[2];
  1399. var om3 = other.m[3];
  1400. var om4 = other.m[4];
  1401. var om5 = other.m[5];
  1402. var om6 = other.m[6];
  1403. var om7 = other.m[7];
  1404. var om8 = other.m[8];
  1405. var om9 = other.m[9];
  1406. var om10 = other.m[10];
  1407. var om11 = other.m[11];
  1408. var om12 = other.m[12];
  1409. var om13 = other.m[13];
  1410. var om14 = other.m[14];
  1411. var om15 = other.m[15];
  1412. result[offset] = tm0 * om0 + tm1 * om4 + tm2 * om8 + tm3 * om12;
  1413. result[offset + 1] = tm0 * om1 + tm1 * om5 + tm2 * om9 + tm3 * om13;
  1414. result[offset + 2] = tm0 * om2 + tm1 * om6 + tm2 * om10 + tm3 * om14;
  1415. result[offset + 3] = tm0 * om3 + tm1 * om7 + tm2 * om11 + tm3 * om15;
  1416. result[offset + 4] = tm4 * om0 + tm5 * om4 + tm6 * om8 + tm7 * om12;
  1417. result[offset + 5] = tm4 * om1 + tm5 * om5 + tm6 * om9 + tm7 * om13;
  1418. result[offset + 6] = tm4 * om2 + tm5 * om6 + tm6 * om10 + tm7 * om14;
  1419. result[offset + 7] = tm4 * om3 + tm5 * om7 + tm6 * om11 + tm7 * om15;
  1420. result[offset + 8] = tm8 * om0 + tm9 * om4 + tm10 * om8 + tm11 * om12;
  1421. result[offset + 9] = tm8 * om1 + tm9 * om5 + tm10 * om9 + tm11 * om13;
  1422. result[offset + 10] = tm8 * om2 + tm9 * om6 + tm10 * om10 + tm11 * om14;
  1423. result[offset + 11] = tm8 * om3 + tm9 * om7 + tm10 * om11 + tm11 * om15;
  1424. result[offset + 12] = tm12 * om0 + tm13 * om4 + tm14 * om8 + tm15 * om12;
  1425. result[offset + 13] = tm12 * om1 + tm13 * om5 + tm14 * om9 + tm15 * om13;
  1426. result[offset + 14] = tm12 * om2 + tm13 * om6 + tm14 * om10 + tm15 * om14;
  1427. result[offset + 15] = tm12 * om3 + tm13 * om7 + tm14 * om11 + tm15 * om15;
  1428. return this;
  1429. };
  1430. Matrix.prototype.equals = function (value) {
  1431. return value && (this.m[0] === value.m[0] && this.m[1] === value.m[1] && this.m[2] === value.m[2] && this.m[3] === value.m[3] && this.m[4] === value.m[4] && this.m[5] === value.m[5] && this.m[6] === value.m[6] && this.m[7] === value.m[7] && this.m[8] === value.m[8] && this.m[9] === value.m[9] && this.m[10] === value.m[10] && this.m[11] === value.m[11] && this.m[12] === value.m[12] && this.m[13] === value.m[13] && this.m[14] === value.m[14] && this.m[15] === value.m[15]);
  1432. };
  1433. Matrix.prototype.clone = function () {
  1434. return Matrix.FromValues(this.m[0], this.m[1], this.m[2], this.m[3], this.m[4], this.m[5], this.m[6], this.m[7], this.m[8], this.m[9], this.m[10], this.m[11], this.m[12], this.m[13], this.m[14], this.m[15]);
  1435. };
  1436. Matrix.prototype.decompose = function (scale, rotation, translation) {
  1437. translation.x = this.m[12];
  1438. translation.y = this.m[13];
  1439. translation.z = this.m[14];
  1440. var xs = BABYLON.Tools.Sign(this.m[0] * this.m[1] * this.m[2] * this.m[3]) < 0 ? -1 : 1;
  1441. var ys = BABYLON.Tools.Sign(this.m[4] * this.m[5] * this.m[6] * this.m[7]) < 0 ? -1 : 1;
  1442. var zs = BABYLON.Tools.Sign(this.m[8] * this.m[9] * this.m[10] * this.m[11]) < 0 ? -1 : 1;
  1443. scale.x = xs * Math.sqrt(this.m[0] * this.m[0] + this.m[1] * this.m[1] + this.m[2] * this.m[2]);
  1444. scale.y = ys * Math.sqrt(this.m[4] * this.m[4] + this.m[5] * this.m[5] + this.m[6] * this.m[6]);
  1445. scale.z = zs * Math.sqrt(this.m[8] * this.m[8] + this.m[9] * this.m[9] + this.m[10] * this.m[10]);
  1446. if (scale.x === 0 || scale.y === 0 || scale.z === 0) {
  1447. rotation.x = 0;
  1448. rotation.y = 0;
  1449. rotation.z = 0;
  1450. rotation.w = 1;
  1451. return false;
  1452. }
  1453. var rotationMatrix = Matrix.FromValues(this.m[0] / scale.x, this.m[1] / scale.x, this.m[2] / scale.x, 0, this.m[4] / scale.y, this.m[5] / scale.y, this.m[6] / scale.y, 0, this.m[8] / scale.z, this.m[9] / scale.z, this.m[10] / scale.z, 0, 0, 0, 0, 1);
  1454. rotation.fromRotationMatrix(rotationMatrix);
  1455. return true;
  1456. };
  1457. // Statics
  1458. Matrix.FromArray = function (array, offset) {
  1459. var result = new Matrix();
  1460. if (!offset) {
  1461. offset = 0;
  1462. }
  1463. Matrix.FromArrayToRef(array, offset, result);
  1464. return result;
  1465. };
  1466. Matrix.FromArrayToRef = function (array, offset, result) {
  1467. for (var index = 0; index < 16; index++) {
  1468. result.m[index] = array[index + offset];
  1469. }
  1470. };
  1471. Matrix.FromValuesToRef = function (initialM11, initialM12, initialM13, initialM14, initialM21, initialM22, initialM23, initialM24, initialM31, initialM32, initialM33, initialM34, initialM41, initialM42, initialM43, initialM44, result) {
  1472. result.m[0] = initialM11;
  1473. result.m[1] = initialM12;
  1474. result.m[2] = initialM13;
  1475. result.m[3] = initialM14;
  1476. result.m[4] = initialM21;
  1477. result.m[5] = initialM22;
  1478. result.m[6] = initialM23;
  1479. result.m[7] = initialM24;
  1480. result.m[8] = initialM31;
  1481. result.m[9] = initialM32;
  1482. result.m[10] = initialM33;
  1483. result.m[11] = initialM34;
  1484. result.m[12] = initialM41;
  1485. result.m[13] = initialM42;
  1486. result.m[14] = initialM43;
  1487. result.m[15] = initialM44;
  1488. };
  1489. Matrix.FromValues = function (initialM11, initialM12, initialM13, initialM14, initialM21, initialM22, initialM23, initialM24, initialM31, initialM32, initialM33, initialM34, initialM41, initialM42, initialM43, initialM44) {
  1490. var result = new Matrix();
  1491. result.m[0] = initialM11;
  1492. result.m[1] = initialM12;
  1493. result.m[2] = initialM13;
  1494. result.m[3] = initialM14;
  1495. result.m[4] = initialM21;
  1496. result.m[5] = initialM22;
  1497. result.m[6] = initialM23;
  1498. result.m[7] = initialM24;
  1499. result.m[8] = initialM31;
  1500. result.m[9] = initialM32;
  1501. result.m[10] = initialM33;
  1502. result.m[11] = initialM34;
  1503. result.m[12] = initialM41;
  1504. result.m[13] = initialM42;
  1505. result.m[14] = initialM43;
  1506. result.m[15] = initialM44;
  1507. return result;
  1508. };
  1509. Matrix.Compose = function (scale, rotation, translation) {
  1510. var result = Matrix.FromValues(scale.x, 0, 0, 0, 0, scale.y, 0, 0, 0, 0, scale.z, 0, 0, 0, 0, 1);
  1511. var rotationMatrix = Matrix.Identity();
  1512. rotation.toRotationMatrix(rotationMatrix);
  1513. result = result.multiply(rotationMatrix);
  1514. result.setTranslation(translation);
  1515. return result;
  1516. };
  1517. Matrix.Identity = function () {
  1518. return Matrix.FromValues(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1.0);
  1519. };
  1520. Matrix.IdentityToRef = function (result) {
  1521. Matrix.FromValuesToRef(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1.0, result);
  1522. };
  1523. Matrix.Zero = function () {
  1524. return Matrix.FromValues(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  1525. };
  1526. Matrix.RotationX = function (angle) {
  1527. var result = new Matrix();
  1528. Matrix.RotationXToRef(angle, result);
  1529. return result;
  1530. };
  1531. Matrix.Invert = function (source) {
  1532. var result = new Matrix();
  1533. source.invertToRef(result);
  1534. return result;
  1535. };
  1536. Matrix.RotationXToRef = function (angle, result) {
  1537. var s = Math.sin(angle);
  1538. var c = Math.cos(angle);
  1539. result.m[0] = 1.0;
  1540. result.m[15] = 1.0;
  1541. result.m[5] = c;
  1542. result.m[10] = c;
  1543. result.m[9] = -s;
  1544. result.m[6] = s;
  1545. result.m[1] = 0;
  1546. result.m[2] = 0;
  1547. result.m[3] = 0;
  1548. result.m[4] = 0;
  1549. result.m[7] = 0;
  1550. result.m[8] = 0;
  1551. result.m[11] = 0;
  1552. result.m[12] = 0;
  1553. result.m[13] = 0;
  1554. result.m[14] = 0;
  1555. };
  1556. Matrix.RotationY = function (angle) {
  1557. var result = new Matrix();
  1558. Matrix.RotationYToRef(angle, result);
  1559. return result;
  1560. };
  1561. Matrix.RotationYToRef = function (angle, result) {
  1562. var s = Math.sin(angle);
  1563. var c = Math.cos(angle);
  1564. result.m[5] = 1.0;
  1565. result.m[15] = 1.0;
  1566. result.m[0] = c;
  1567. result.m[2] = -s;
  1568. result.m[8] = s;
  1569. result.m[10] = c;
  1570. result.m[1] = 0;
  1571. result.m[3] = 0;
  1572. result.m[4] = 0;
  1573. result.m[6] = 0;
  1574. result.m[7] = 0;
  1575. result.m[9] = 0;
  1576. result.m[11] = 0;
  1577. result.m[12] = 0;
  1578. result.m[13] = 0;
  1579. result.m[14] = 0;
  1580. };
  1581. Matrix.RotationZ = function (angle) {
  1582. var result = new Matrix();
  1583. Matrix.RotationZToRef(angle, result);
  1584. return result;
  1585. };
  1586. Matrix.RotationZToRef = function (angle, result) {
  1587. var s = Math.sin(angle);
  1588. var c = Math.cos(angle);
  1589. result.m[10] = 1.0;
  1590. result.m[15] = 1.0;
  1591. result.m[0] = c;
  1592. result.m[1] = s;
  1593. result.m[4] = -s;
  1594. result.m[5] = c;
  1595. result.m[2] = 0;
  1596. result.m[3] = 0;
  1597. result.m[6] = 0;
  1598. result.m[7] = 0;
  1599. result.m[8] = 0;
  1600. result.m[9] = 0;
  1601. result.m[11] = 0;
  1602. result.m[12] = 0;
  1603. result.m[13] = 0;
  1604. result.m[14] = 0;
  1605. };
  1606. Matrix.RotationAxis = function (axis, angle) {
  1607. var s = Math.sin(-angle);
  1608. var c = Math.cos(-angle);
  1609. var c1 = 1 - c;
  1610. axis.normalize();
  1611. var result = Matrix.Zero();
  1612. result.m[0] = (axis.x * axis.x) * c1 + c;
  1613. result.m[1] = (axis.x * axis.y) * c1 - (axis.z * s);
  1614. result.m[2] = (axis.x * axis.z) * c1 + (axis.y * s);
  1615. result.m[3] = 0.0;
  1616. result.m[4] = (axis.y * axis.x) * c1 + (axis.z * s);
  1617. result.m[5] = (axis.y * axis.y) * c1 + c;
  1618. result.m[6] = (axis.y * axis.z) * c1 - (axis.x * s);
  1619. result.m[7] = 0.0;
  1620. result.m[8] = (axis.z * axis.x) * c1 - (axis.y * s);
  1621. result.m[9] = (axis.z * axis.y) * c1 + (axis.x * s);
  1622. result.m[10] = (axis.z * axis.z) * c1 + c;
  1623. result.m[11] = 0.0;
  1624. result.m[15] = 1.0;
  1625. return result;
  1626. };
  1627. Matrix.RotationYawPitchRoll = function (yaw, pitch, roll) {
  1628. var result = new Matrix();
  1629. Matrix.RotationYawPitchRollToRef(yaw, pitch, roll, result);
  1630. return result;
  1631. };
  1632. Matrix.RotationYawPitchRollToRef = function (yaw, pitch, roll, result) {
  1633. Quaternion.RotationYawPitchRollToRef(yaw, pitch, roll, this._tempQuaternion);
  1634. this._tempQuaternion.toRotationMatrix(result);
  1635. };
  1636. Matrix.Scaling = function (x, y, z) {
  1637. var result = Matrix.Zero();
  1638. Matrix.ScalingToRef(x, y, z, result);
  1639. return result;
  1640. };
  1641. Matrix.ScalingToRef = function (x, y, z, result) {
  1642. result.m[0] = x;
  1643. result.m[1] = 0;
  1644. result.m[2] = 0;
  1645. result.m[3] = 0;
  1646. result.m[4] = 0;
  1647. result.m[5] = y;
  1648. result.m[6] = 0;
  1649. result.m[7] = 0;
  1650. result.m[8] = 0;
  1651. result.m[9] = 0;
  1652. result.m[10] = z;
  1653. result.m[11] = 0;
  1654. result.m[12] = 0;
  1655. result.m[13] = 0;
  1656. result.m[14] = 0;
  1657. result.m[15] = 1.0;
  1658. };
  1659. Matrix.Translation = function (x, y, z) {
  1660. var result = Matrix.Identity();
  1661. Matrix.TranslationToRef(x, y, z, result);
  1662. return result;
  1663. };
  1664. Matrix.TranslationToRef = function (x, y, z, result) {
  1665. Matrix.FromValuesToRef(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1.0, 0, x, y, z, 1.0, result);
  1666. };
  1667. Matrix.LookAtLH = function (eye, target, up) {
  1668. var result = Matrix.Zero();
  1669. Matrix.LookAtLHToRef(eye, target, up, result);
  1670. return result;
  1671. };
  1672. Matrix.LookAtLHToRef = function (eye, target, up, result) {
  1673. // Z axis
  1674. target.subtractToRef(eye, this._zAxis);
  1675. this._zAxis.normalize();
  1676. // X axis
  1677. Vector3.CrossToRef(up, this._zAxis, this._xAxis);
  1678. this._xAxis.normalize();
  1679. // Y axis
  1680. Vector3.CrossToRef(this._zAxis, this._xAxis, this._yAxis);
  1681. this._yAxis.normalize();
  1682. // Eye angles
  1683. var ex = -Vector3.Dot(this._xAxis, eye);
  1684. var ey = -Vector3.Dot(this._yAxis, eye);
  1685. var ez = -Vector3.Dot(this._zAxis, eye);
  1686. return Matrix.FromValuesToRef(this._xAxis.x, this._yAxis.x, this._zAxis.x, 0, this._xAxis.y, this._yAxis.y, this._zAxis.y, 0, this._xAxis.z, this._yAxis.z, this._zAxis.z, 0, ex, ey, ez, 1, result);
  1687. };
  1688. Matrix.OrthoLH = function (width, height, znear, zfar) {
  1689. var hw = 2.0 / width;
  1690. var hh = 2.0 / height;
  1691. var id = 1.0 / (zfar - znear);
  1692. var nid = znear / (znear - zfar);
  1693. return Matrix.FromValues(hw, 0, 0, 0, 0, hh, 0, 0, 0, 0, id, 0, 0, 0, nid, 1);
  1694. };
  1695. Matrix.OrthoOffCenterLH = function (left, right, bottom, top, znear, zfar) {
  1696. var matrix = Matrix.Zero();
  1697. Matrix.OrthoOffCenterLHToRef(left, right, bottom, top, znear, zfar, matrix);
  1698. return matrix;
  1699. };
  1700. Matrix.OrthoOffCenterLHToRef = function (left, right, bottom, top, znear, zfar, result) {
  1701. result.m[0] = 2.0 / (right - left);
  1702. result.m[1] = result.m[2] = result.m[3] = 0;
  1703. result.m[5] = 2.0 / (top - bottom);
  1704. result.m[4] = result.m[6] = result.m[7] = 0;
  1705. result.m[10] = -1.0 / (znear - zfar);
  1706. result.m[8] = result.m[9] = result.m[11] = 0;
  1707. result.m[12] = (left + right) / (left - right);
  1708. result.m[13] = (top + bottom) / (bottom - top);
  1709. result.m[14] = znear / (znear - zfar);
  1710. result.m[15] = 1.0;
  1711. };
  1712. Matrix.PerspectiveLH = function (width, height, znear, zfar) {
  1713. var matrix = Matrix.Zero();
  1714. matrix.m[0] = (2.0 * znear) / width;
  1715. matrix.m[1] = matrix.m[2] = matrix.m[3] = 0.0;
  1716. matrix.m[5] = (2.0 * znear) / height;
  1717. matrix.m[4] = matrix.m[6] = matrix.m[7] = 0.0;
  1718. matrix.m[10] = -zfar / (znear - zfar);
  1719. matrix.m[8] = matrix.m[9] = 0.0;
  1720. matrix.m[11] = 1.0;
  1721. matrix.m[12] = matrix.m[13] = matrix.m[15] = 0.0;
  1722. matrix.m[14] = (znear * zfar) / (znear - zfar);
  1723. return matrix;
  1724. };
  1725. Matrix.PerspectiveFovLH = function (fov, aspect, znear, zfar) {
  1726. var matrix = Matrix.Zero();
  1727. Matrix.PerspectiveFovLHToRef(fov, aspect, znear, zfar, matrix);
  1728. return matrix;
  1729. };
  1730. Matrix.PerspectiveFovLHToRef = function (fov, aspect, znear, zfar, result, fovMode) {
  1731. if (fovMode === void 0) { fovMode = BABYLON.Camera.FOVMODE_VERTICAL_FIXED; }
  1732. var tan = 1.0 / (Math.tan(fov * 0.5));
  1733. var v_fixed = (fovMode === BABYLON.Camera.FOVMODE_VERTICAL_FIXED);
  1734. if (v_fixed) {
  1735. result.m[0] = tan / aspect;
  1736. }
  1737. else {
  1738. result.m[0] = tan;
  1739. }
  1740. result.m[1] = result.m[2] = result.m[3] = 0.0;
  1741. if (v_fixed) {
  1742. result.m[5] = tan;
  1743. }
  1744. else {
  1745. result.m[5] = tan * aspect;
  1746. }
  1747. result.m[4] = result.m[6] = result.m[7] = 0.0;
  1748. result.m[8] = result.m[9] = 0.0;
  1749. result.m[10] = -zfar / (znear - zfar);
  1750. result.m[11] = 1.0;
  1751. result.m[12] = result.m[13] = result.m[15] = 0.0;
  1752. result.m[14] = (znear * zfar) / (znear - zfar);
  1753. };
  1754. Matrix.GetFinalMatrix = function (viewport, world, view, projection, zmin, zmax) {
  1755. var cw = viewport.width;
  1756. var ch = viewport.height;
  1757. var cx = viewport.x;
  1758. var cy = viewport.y;
  1759. var viewportMatrix = Matrix.FromValues(cw / 2.0, 0, 0, 0, 0, -ch / 2.0, 0, 0, 0, 0, zmax - zmin, 0, cx + cw / 2.0, ch / 2.0 + cy, zmin, 1);
  1760. return world.multiply(view).multiply(projection).multiply(viewportMatrix);
  1761. };
  1762. Matrix.Transpose = function (matrix) {
  1763. var result = new Matrix();
  1764. result.m[0] = matrix.m[0];
  1765. result.m[1] = matrix.m[4];
  1766. result.m[2] = matrix.m[8];
  1767. result.m[3] = matrix.m[12];
  1768. result.m[4] = matrix.m[1];
  1769. result.m[5] = matrix.m[5];
  1770. result.m[6] = matrix.m[9];
  1771. result.m[7] = matrix.m[13];
  1772. result.m[8] = matrix.m[2];
  1773. result.m[9] = matrix.m[6];
  1774. result.m[10] = matrix.m[10];
  1775. result.m[11] = matrix.m[14];
  1776. result.m[12] = matrix.m[3];
  1777. result.m[13] = matrix.m[7];
  1778. result.m[14] = matrix.m[11];
  1779. result.m[15] = matrix.m[15];
  1780. return result;
  1781. };
  1782. Matrix.Reflection = function (plane) {
  1783. var matrix = new Matrix();
  1784. Matrix.ReflectionToRef(plane, matrix);
  1785. return matrix;
  1786. };
  1787. Matrix.ReflectionToRef = function (plane, result) {
  1788. plane.normalize();
  1789. var x = plane.normal.x;
  1790. var y = plane.normal.y;
  1791. var z = plane.normal.z;
  1792. var temp = -2 * x;
  1793. var temp2 = -2 * y;
  1794. var temp3 = -2 * z;
  1795. result.m[0] = (temp * x) + 1;
  1796. result.m[1] = temp2 * x;
  1797. result.m[2] = temp3 * x;
  1798. result.m[3] = 0.0;
  1799. result.m[4] = temp * y;
  1800. result.m[5] = (temp2 * y) + 1;
  1801. result.m[6] = temp3 * y;
  1802. result.m[7] = 0.0;
  1803. result.m[8] = temp * z;
  1804. result.m[9] = temp2 * z;
  1805. result.m[10] = (temp3 * z) + 1;
  1806. result.m[11] = 0.0;
  1807. result.m[12] = temp * plane.d;
  1808. result.m[13] = temp2 * plane.d;
  1809. result.m[14] = temp3 * plane.d;
  1810. result.m[15] = 1.0;
  1811. };
  1812. Matrix._tempQuaternion = new Quaternion();
  1813. Matrix._xAxis = Vector3.Zero();
  1814. Matrix._yAxis = Vector3.Zero();
  1815. Matrix._zAxis = Vector3.Zero();
  1816. return Matrix;
  1817. })();
  1818. BABYLON.Matrix = Matrix;
  1819. var Plane = (function () {
  1820. function Plane(a, b, c, d) {
  1821. this.normal = new Vector3(a, b, c);
  1822. this.d = d;
  1823. }
  1824. Plane.prototype.asArray = function () {
  1825. return [this.normal.x, this.normal.y, this.normal.z, this.d];
  1826. };
  1827. // Methods
  1828. Plane.prototype.clone = function () {
  1829. return new Plane(this.normal.x, this.normal.y, this.normal.z, this.d);
  1830. };
  1831. Plane.prototype.normalize = function () {
  1832. var norm = (Math.sqrt((this.normal.x * this.normal.x) + (this.normal.y * this.normal.y) + (this.normal.z * this.normal.z)));
  1833. var magnitude = 0;
  1834. if (norm !== 0) {
  1835. magnitude = 1.0 / norm;
  1836. }
  1837. this.normal.x *= magnitude;
  1838. this.normal.y *= magnitude;
  1839. this.normal.z *= magnitude;
  1840. this.d *= magnitude;
  1841. return this;
  1842. };
  1843. Plane.prototype.transform = function (transformation) {
  1844. var transposedMatrix = Matrix.Transpose(transformation);
  1845. var x = this.normal.x;
  1846. var y = this.normal.y;
  1847. var z = this.normal.z;
  1848. var d = this.d;
  1849. var normalX = (((x * transposedMatrix.m[0]) + (y * transposedMatrix.m[1])) + (z * transposedMatrix.m[2])) + (d * transposedMatrix.m[3]);
  1850. var normalY = (((x * transposedMatrix.m[4]) + (y * transposedMatrix.m[5])) + (z * transposedMatrix.m[6])) + (d * transposedMatrix.m[7]);
  1851. var normalZ = (((x * transposedMatrix.m[8]) + (y * transposedMatrix.m[9])) + (z * transposedMatrix.m[10])) + (d * transposedMatrix.m[11]);
  1852. var finalD = (((x * transposedMatrix.m[12]) + (y * transposedMatrix.m[13])) + (z * transposedMatrix.m[14])) + (d * transposedMatrix.m[15]);
  1853. return new Plane(normalX, normalY, normalZ, finalD);
  1854. };
  1855. Plane.prototype.dotCoordinate = function (point) {
  1856. return ((((this.normal.x * point.x) + (this.normal.y * point.y)) + (this.normal.z * point.z)) + this.d);
  1857. };
  1858. Plane.prototype.copyFromPoints = function (point1, point2, point3) {
  1859. var x1 = point2.x - point1.x;
  1860. var y1 = point2.y - point1.y;
  1861. var z1 = point2.z - point1.z;
  1862. var x2 = point3.x - point1.x;
  1863. var y2 = point3.y - point1.y;
  1864. var z2 = point3.z - point1.z;
  1865. var yz = (y1 * z2) - (z1 * y2);
  1866. var xz = (z1 * x2) - (x1 * z2);
  1867. var xy = (x1 * y2) - (y1 * x2);
  1868. var pyth = (Math.sqrt((yz * yz) + (xz * xz) + (xy * xy)));
  1869. var invPyth;
  1870. if (pyth !== 0) {
  1871. invPyth = 1.0 / pyth;
  1872. }
  1873. else {
  1874. invPyth = 0;
  1875. }
  1876. this.normal.x = yz * invPyth;
  1877. this.normal.y = xz * invPyth;
  1878. this.normal.z = xy * invPyth;
  1879. this.d = -((this.normal.x * point1.x) + (this.normal.y * point1.y) + (this.normal.z * point1.z));
  1880. return this;
  1881. };
  1882. Plane.prototype.isFrontFacingTo = function (direction, epsilon) {
  1883. var dot = Vector3.Dot(this.normal, direction);
  1884. return (dot <= epsilon);
  1885. };
  1886. Plane.prototype.signedDistanceTo = function (point) {
  1887. return Vector3.Dot(point, this.normal) + this.d;
  1888. };
  1889. // Statics
  1890. Plane.FromArray = function (array) {
  1891. return new Plane(array[0], array[1], array[2], array[3]);
  1892. };
  1893. Plane.FromPoints = function (point1, point2, point3) {
  1894. var result = new Plane(0, 0, 0, 0);
  1895. result.copyFromPoints(point1, point2, point3);
  1896. return result;
  1897. };
  1898. Plane.FromPositionAndNormal = function (origin, normal) {
  1899. var result = new Plane(0, 0, 0, 0);
  1900. normal.normalize();
  1901. result.normal = normal;
  1902. result.d = -(normal.x * origin.x + normal.y * origin.y + normal.z * origin.z);
  1903. return result;
  1904. };
  1905. Plane.SignedDistanceToPlaneFromPositionAndNormal = function (origin, normal, point) {
  1906. var d = -(normal.x * origin.x + normal.y * origin.y + normal.z * origin.z);
  1907. return Vector3.Dot(point, normal) + d;
  1908. };
  1909. return Plane;
  1910. })();
  1911. BABYLON.Plane = Plane;
  1912. var Viewport = (function () {
  1913. function Viewport(x, y, width, height) {
  1914. this.x = x;
  1915. this.y = y;
  1916. this.width = width;
  1917. this.height = height;
  1918. }
  1919. Viewport.prototype.toGlobal = function (engine) {
  1920. var width = engine.getRenderWidth();
  1921. var height = engine.getRenderHeight();
  1922. return new Viewport(this.x * width, this.y * height, this.width * width, this.height * height);
  1923. };
  1924. return Viewport;
  1925. })();
  1926. BABYLON.Viewport = Viewport;
  1927. var Frustum = (function () {
  1928. function Frustum() {
  1929. }
  1930. Frustum.GetPlanes = function (transform) {
  1931. var frustumPlanes = [];
  1932. for (var index = 0; index < 6; index++) {
  1933. frustumPlanes.push(new Plane(0, 0, 0, 0));
  1934. }
  1935. Frustum.GetPlanesToRef(transform, frustumPlanes);
  1936. return frustumPlanes;
  1937. };
  1938. Frustum.GetPlanesToRef = function (transform, frustumPlanes) {
  1939. // Near
  1940. frustumPlanes[0].normal.x = transform.m[3] + transform.m[2];
  1941. frustumPlanes[0].normal.y = transform.m[7] + transform.m[6];
  1942. frustumPlanes[0].normal.z = transform.m[10] + transform.m[10];
  1943. frustumPlanes[0].d = transform.m[15] + transform.m[14];
  1944. frustumPlanes[0].normalize();
  1945. // Far
  1946. frustumPlanes[1].normal.x = transform.m[3] - transform.m[2];
  1947. frustumPlanes[1].normal.y = transform.m[7] - transform.m[6];
  1948. frustumPlanes[1].normal.z = transform.m[11] - transform.m[10];
  1949. frustumPlanes[1].d = transform.m[15] - transform.m[14];
  1950. frustumPlanes[1].normalize();
  1951. // Left
  1952. frustumPlanes[2].normal.x = transform.m[3] + transform.m[0];
  1953. frustumPlanes[2].normal.y = transform.m[7] + transform.m[4];
  1954. frustumPlanes[2].normal.z = transform.m[11] + transform.m[8];
  1955. frustumPlanes[2].d = transform.m[15] + transform.m[12];
  1956. frustumPlanes[2].normalize();
  1957. // Right
  1958. frustumPlanes[3].normal.x = transform.m[3] - transform.m[0];
  1959. frustumPlanes[3].normal.y = transform.m[7] - transform.m[4];
  1960. frustumPlanes[3].normal.z = transform.m[11] - transform.m[8];
  1961. frustumPlanes[3].d = transform.m[15] - transform.m[12];
  1962. frustumPlanes[3].normalize();
  1963. // Top
  1964. frustumPlanes[4].normal.x = transform.m[3] - transform.m[1];
  1965. frustumPlanes[4].normal.y = transform.m[7] - transform.m[5];
  1966. frustumPlanes[4].normal.z = transform.m[11] - transform.m[9];
  1967. frustumPlanes[4].d = transform.m[15] - transform.m[13];
  1968. frustumPlanes[4].normalize();
  1969. // Bottom
  1970. frustumPlanes[5].normal.x = transform.m[3] + transform.m[1];
  1971. frustumPlanes[5].normal.y = transform.m[7] + transform.m[5];
  1972. frustumPlanes[5].normal.z = transform.m[11] + transform.m[9];
  1973. frustumPlanes[5].d = transform.m[15] + transform.m[13];
  1974. frustumPlanes[5].normalize();
  1975. };
  1976. return Frustum;
  1977. })();
  1978. BABYLON.Frustum = Frustum;
  1979. var Ray = (function () {
  1980. function Ray(origin, direction, length) {
  1981. if (length === void 0) { length = Number.MAX_VALUE; }
  1982. this.origin = origin;
  1983. this.direction = direction;
  1984. this.length = length;
  1985. }
  1986. // Methods
  1987. Ray.prototype.intersectsBoxMinMax = function (minimum, maximum) {
  1988. var d = 0.0;
  1989. var maxValue = Number.MAX_VALUE;
  1990. if (Math.abs(this.direction.x) < 0.0000001) {
  1991. if (this.origin.x < minimum.x || this.origin.x > maximum.x) {
  1992. return false;
  1993. }
  1994. }
  1995. else {
  1996. var inv = 1.0 / this.direction.x;
  1997. var min = (minimum.x - this.origin.x) * inv;
  1998. var max = (maximum.x - this.origin.x) * inv;
  1999. if (max === -Infinity) {
  2000. max = Infinity;
  2001. }
  2002. if (min > max) {
  2003. var temp = min;
  2004. min = max;
  2005. max = temp;
  2006. }
  2007. d = Math.max(min, d);
  2008. maxValue = Math.min(max, maxValue);
  2009. if (d > maxValue) {
  2010. return false;
  2011. }
  2012. }
  2013. if (Math.abs(this.direction.y) < 0.0000001) {
  2014. if (this.origin.y < minimum.y || this.origin.y > maximum.y) {
  2015. return false;
  2016. }
  2017. }
  2018. else {
  2019. inv = 1.0 / this.direction.y;
  2020. min = (minimum.y - this.origin.y) * inv;
  2021. max = (maximum.y - this.origin.y) * inv;
  2022. if (max === -Infinity) {
  2023. max = Infinity;
  2024. }
  2025. if (min > max) {
  2026. temp = min;
  2027. min = max;
  2028. max = temp;
  2029. }
  2030. d = Math.max(min, d);
  2031. maxValue = Math.min(max, maxValue);
  2032. if (d > maxValue) {
  2033. return false;
  2034. }
  2035. }
  2036. if (Math.abs(this.direction.z) < 0.0000001) {
  2037. if (this.origin.z < minimum.z || this.origin.z > maximum.z) {
  2038. return false;
  2039. }
  2040. }
  2041. else {
  2042. inv = 1.0 / this.direction.z;
  2043. min = (minimum.z - this.origin.z) * inv;
  2044. max = (maximum.z - this.origin.z) * inv;
  2045. if (max === -Infinity) {
  2046. max = Infinity;
  2047. }
  2048. if (min > max) {
  2049. temp = min;
  2050. min = max;
  2051. max = temp;
  2052. }
  2053. d = Math.max(min, d);
  2054. maxValue = Math.min(max, maxValue);
  2055. if (d > maxValue) {
  2056. return false;
  2057. }
  2058. }
  2059. return true;
  2060. };
  2061. Ray.prototype.intersectsBox = function (box) {
  2062. return this.intersectsBoxMinMax(box.minimum, box.maximum);
  2063. };
  2064. Ray.prototype.intersectsSphere = function (sphere) {
  2065. var x = sphere.center.x - this.origin.x;
  2066. var y = sphere.center.y - this.origin.y;
  2067. var z = sphere.center.z - this.origin.z;
  2068. var pyth = (x * x) + (y * y) + (z * z);
  2069. var rr = sphere.radius * sphere.radius;
  2070. if (pyth <= rr) {
  2071. return true;
  2072. }
  2073. var dot = (x * this.direction.x) + (y * this.direction.y) + (z * this.direction.z);
  2074. if (dot < 0.0) {
  2075. return false;
  2076. }
  2077. var temp = pyth - (dot * dot);
  2078. return temp <= rr;
  2079. };
  2080. Ray.prototype.intersectsTriangle = function (vertex0, vertex1, vertex2) {
  2081. if (!this._edge1) {
  2082. this._edge1 = Vector3.Zero();
  2083. this._edge2 = Vector3.Zero();
  2084. this._pvec = Vector3.Zero();
  2085. this._tvec = Vector3.Zero();
  2086. this._qvec = Vector3.Zero();
  2087. }
  2088. vertex1.subtractToRef(vertex0, this._edge1);
  2089. vertex2.subtractToRef(vertex0, this._edge2);
  2090. Vector3.CrossToRef(this.direction, this._edge2, this._pvec);
  2091. var det = Vector3.Dot(this._edge1, this._pvec);
  2092. if (det === 0) {
  2093. return null;
  2094. }
  2095. var invdet = 1 / det;
  2096. this.origin.subtractToRef(vertex0, this._tvec);
  2097. var bu = Vector3.Dot(this._tvec, this._pvec) * invdet;
  2098. if (bu < 0 || bu > 1.0) {
  2099. return null;
  2100. }
  2101. Vector3.CrossToRef(this._tvec, this._edge1, this._qvec);
  2102. var bv = Vector3.Dot(this.direction, this._qvec) * invdet;
  2103. if (bv < 0 || bu + bv > 1.0) {
  2104. return null;
  2105. }
  2106. //check if the distance is longer than the predefined length.
  2107. var distance = Vector3.Dot(this._edge2, this._qvec) * invdet;
  2108. if (distance > this.length) {
  2109. return null;
  2110. }
  2111. return new BABYLON.IntersectionInfo(bu, bv, distance);
  2112. };
  2113. // Statics
  2114. Ray.CreateNew = function (x, y, viewportWidth, viewportHeight, world, view, projection) {
  2115. var start = Vector3.Unproject(new Vector3(x, y, 0), viewportWidth, viewportHeight, world, view, projection);
  2116. var end = Vector3.Unproject(new Vector3(x, y, 1), viewportWidth, viewportHeight, world, view, projection);
  2117. var direction = end.subtract(start);
  2118. direction.normalize();
  2119. return new Ray(start, direction);
  2120. };
  2121. /**
  2122. * Function will create a new transformed ray starting from origin and ending at the end point. Ray's length will be set, and ray will be
  2123. * transformed to the given world matrix.
  2124. * @param origin The origin point
  2125. * @param end The end point
  2126. * @param world a matrix to transform the ray to. Default is the identity matrix.
  2127. */
  2128. Ray.CreateNewFromTo = function (origin, end, world) {
  2129. if (world === void 0) { world = Matrix.Identity(); }
  2130. var direction = end.subtract(origin);
  2131. var length = Math.sqrt((direction.x * direction.x) + (direction.y * direction.y) + (direction.z * direction.z));
  2132. direction.normalize();
  2133. return Ray.Transform(new Ray(origin, direction, length), world);
  2134. };
  2135. Ray.Transform = function (ray, matrix) {
  2136. var newOrigin = Vector3.TransformCoordinates(ray.origin, matrix);
  2137. var newDirection = Vector3.TransformNormal(ray.direction, matrix);
  2138. return new Ray(newOrigin, newDirection, ray.length);
  2139. };
  2140. return Ray;
  2141. })();
  2142. BABYLON.Ray = Ray;
  2143. (function (Space) {
  2144. Space[Space["LOCAL"] = 0] = "LOCAL";
  2145. Space[Space["WORLD"] = 1] = "WORLD";
  2146. })(BABYLON.Space || (BABYLON.Space = {}));
  2147. var Space = BABYLON.Space;
  2148. var Axis = (function () {
  2149. function Axis() {
  2150. }
  2151. Axis.X = new Vector3(1, 0, 0);
  2152. Axis.Y = new Vector3(0, 1, 0);
  2153. Axis.Z = new Vector3(0, 0, 1);
  2154. return Axis;
  2155. })();
  2156. BABYLON.Axis = Axis;
  2157. ;
  2158. var BezierCurve = (function () {
  2159. function BezierCurve() {
  2160. }
  2161. BezierCurve.interpolate = function (t, x1, y1, x2, y2) {
  2162. // Extract X (which is equal to time here)
  2163. var f0 = 1 - 3 * x2 + 3 * x1;
  2164. var f1 = 3 * x2 - 6 * x1;
  2165. var f2 = 3 * x1;
  2166. var refinedT = t;
  2167. for (var i = 0; i < 5; i++) {
  2168. var refinedT2 = refinedT * refinedT;
  2169. var refinedT3 = refinedT2 * refinedT;
  2170. var x = f0 * refinedT3 + f1 * refinedT2 + f2 * refinedT;
  2171. var slope = 1.0 / (3.0 * f0 * refinedT2 + 2.0 * f1 * refinedT + f2);
  2172. refinedT -= (x - t) * slope;
  2173. refinedT = Math.min(1, Math.max(0, refinedT));
  2174. }
  2175. // Resolve cubic bezier for the given x
  2176. return 3 * Math.pow(1 - refinedT, 2) * refinedT * y1 + 3 * (1 - refinedT) * Math.pow(refinedT, 2) * y2 + Math.pow(refinedT, 3);
  2177. };
  2178. return BezierCurve;
  2179. })();
  2180. BABYLON.BezierCurve = BezierCurve;
  2181. (function (Orientation) {
  2182. Orientation[Orientation["CW"] = 0] = "CW";
  2183. Orientation[Orientation["CCW"] = 1] = "CCW";
  2184. })(BABYLON.Orientation || (BABYLON.Orientation = {}));
  2185. var Orientation = BABYLON.Orientation;
  2186. var Angle = (function () {
  2187. function Angle(radians) {
  2188. var _this = this;
  2189. this.degrees = function () { return _this._radians * 180 / Math.PI; };
  2190. this.radians = function () { return _this._radians; };
  2191. this._radians = radians;
  2192. if (this._radians < 0)
  2193. this._radians += (2 * Math.PI);
  2194. }
  2195. Angle.BetweenTwoPoints = function (a, b) {
  2196. var delta = b.subtract(a);
  2197. var theta = Math.atan2(delta.y, delta.x);
  2198. return new Angle(theta);
  2199. };
  2200. Angle.FromRadians = function (radians) {
  2201. return new Angle(radians);
  2202. };
  2203. Angle.FromDegrees = function (degrees) {
  2204. return new Angle(degrees * Math.PI / 180);
  2205. };
  2206. return Angle;
  2207. })();
  2208. BABYLON.Angle = Angle;
  2209. var Arc2 = (function () {
  2210. function Arc2(startPoint, midPoint, endPoint) {
  2211. this.startPoint = startPoint;
  2212. this.midPoint = midPoint;
  2213. this.endPoint = endPoint;
  2214. var temp = Math.pow(midPoint.x, 2) + Math.pow(midPoint.y, 2);
  2215. var startToMid = (Math.pow(startPoint.x, 2) + Math.pow(startPoint.y, 2) - temp) / 2.;
  2216. var midToEnd = (temp - Math.pow(endPoint.x, 2) - Math.pow(endPoint.y, 2)) / 2.;
  2217. var det = (startPoint.x - midPoint.x) * (midPoint.y - endPoint.y) - (midPoint.x - endPoint.x) * (startPoint.y - midPoint.y);
  2218. this.centerPoint = new Vector2((startToMid * (midPoint.y - endPoint.y) - midToEnd * (startPoint.y - midPoint.y)) / det, ((startPoint.x - midPoint.x) * midToEnd - (midPoint.x - endPoint.x) * startToMid) / det);
  2219. this.radius = this.centerPoint.subtract(this.startPoint).length();
  2220. this.startAngle = Angle.BetweenTwoPoints(this.centerPoint, this.startPoint);
  2221. var a1 = this.startAngle.degrees();
  2222. var a2 = Angle.BetweenTwoPoints(this.centerPoint, this.midPoint).degrees();
  2223. var a3 = Angle.BetweenTwoPoints(this.centerPoint, this.endPoint).degrees();
  2224. // angles correction
  2225. if (a2 - a1 > +180.0)
  2226. a2 -= 360.0;
  2227. if (a2 - a1 < -180.0)
  2228. a2 += 360.0;
  2229. if (a3 - a2 > +180.0)
  2230. a3 -= 360.0;
  2231. if (a3 - a2 < -180.0)
  2232. a3 += 360.0;
  2233. this.orientation = (a2 - a1) < 0 ? 0 /* CW */ : 1 /* CCW */;
  2234. this.angle = Angle.FromDegrees(this.orientation === 0 /* CW */ ? a1 - a3 : a3 - a1);
  2235. }
  2236. return Arc2;
  2237. })();
  2238. BABYLON.Arc2 = Arc2;
  2239. var PathCursor = (function () {
  2240. function PathCursor(path) {
  2241. this.path = path;
  2242. this._onchange = new Array();
  2243. this.value = 0;
  2244. this.animations = new Array();
  2245. }
  2246. PathCursor.prototype.getPoint = function () {
  2247. var point = this.path.getPointAtLengthPosition(this.value);
  2248. return new Vector3(point.x, 0, point.y);
  2249. };
  2250. PathCursor.prototype.moveAhead = function (step) {
  2251. if (step === void 0) { step = 0.002; }
  2252. this.move(step);
  2253. return this;
  2254. };
  2255. PathCursor.prototype.moveBack = function (step) {
  2256. if (step === void 0) { step = 0.002; }
  2257. this.move(-step);
  2258. return this;
  2259. };
  2260. PathCursor.prototype.move = function (step) {
  2261. if (Math.abs(step) > 1) {
  2262. throw "step size should be less than 1.";
  2263. }
  2264. this.value += step;
  2265. this.ensureLimits();
  2266. this.raiseOnChange();
  2267. return this;
  2268. };
  2269. PathCursor.prototype.ensureLimits = function () {
  2270. while (this.value > 1) {
  2271. this.value -= 1;
  2272. }
  2273. while (this.value < 0) {
  2274. this.value += 1;
  2275. }
  2276. return this;
  2277. };
  2278. // used by animation engine
  2279. PathCursor.prototype.markAsDirty = function (propertyName) {
  2280. this.ensureLimits();
  2281. this.raiseOnChange();
  2282. return this;
  2283. };
  2284. PathCursor.prototype.raiseOnChange = function () {
  2285. var _this = this;
  2286. this._onchange.forEach(function (f) { return f(_this); });
  2287. return this;
  2288. };
  2289. PathCursor.prototype.onchange = function (f) {
  2290. this._onchange.push(f);
  2291. return this;
  2292. };
  2293. return PathCursor;
  2294. })();
  2295. BABYLON.PathCursor = PathCursor;
  2296. var Path2 = (function () {
  2297. function Path2(x, y) {
  2298. this._points = [];
  2299. this._length = 0;
  2300. this.closed = false;
  2301. this._points.push(new Vector2(x, y));
  2302. }
  2303. Path2.prototype.addLineTo = function (x, y) {
  2304. if (closed) {
  2305. BABYLON.Tools.Error("cannot add lines to closed paths");
  2306. return this;
  2307. }
  2308. var newPoint = new Vector2(x, y);
  2309. var previousPoint = this._points[this._points.length - 1];
  2310. this._points.push(newPoint);
  2311. this._length += newPoint.subtract(previousPoint).length();
  2312. return this;
  2313. };
  2314. Path2.prototype.addArcTo = function (midX, midY, endX, endY, numberOfSegments) {
  2315. if (numberOfSegments === void 0) { numberOfSegments = 36; }
  2316. if (closed) {
  2317. BABYLON.Tools.Error("cannot add arcs to closed paths");
  2318. return this;
  2319. }
  2320. var startPoint = this._points[this._points.length - 1];
  2321. var midPoint = new Vector2(midX, midY);
  2322. var endPoint = new Vector2(endX, endY);
  2323. var arc = new Arc2(startPoint, midPoint, endPoint);
  2324. var increment = arc.angle.radians() / numberOfSegments;
  2325. if (arc.orientation === 0 /* CW */)
  2326. increment *= -1;
  2327. var currentAngle = arc.startAngle.radians() + increment;
  2328. for (var i = 0; i < numberOfSegments; i++) {
  2329. var x = Math.cos(currentAngle) * arc.radius + arc.centerPoint.x;
  2330. var y = Math.sin(currentAngle) * arc.radius + arc.centerPoint.y;
  2331. this.addLineTo(x, y);
  2332. currentAngle += increment;
  2333. }
  2334. return this;
  2335. };
  2336. Path2.prototype.close = function () {
  2337. this.closed = true;
  2338. return this;
  2339. };
  2340. Path2.prototype.length = function () {
  2341. var result = this._length;
  2342. if (!this.closed) {
  2343. var lastPoint = this._points[this._points.length - 1];
  2344. var firstPoint = this._points[0];
  2345. result += (firstPoint.subtract(lastPoint).length());
  2346. }
  2347. return result;
  2348. };
  2349. Path2.prototype.getPoints = function () {
  2350. return this._points;
  2351. };
  2352. Path2.prototype.getPointAtLengthPosition = function (normalizedLengthPosition) {
  2353. if (normalizedLengthPosition < 0 || normalizedLengthPosition > 1) {
  2354. BABYLON.Tools.Error("normalized length position should be between 0 and 1.");
  2355. return Vector2.Zero();
  2356. }
  2357. var lengthPosition = normalizedLengthPosition * this.length();
  2358. var previousOffset = 0;
  2359. for (var i = 0; i < this._points.length; i++) {
  2360. var j = (i + 1) % this._points.length;
  2361. var a = this._points[i];
  2362. var b = this._points[j];
  2363. var bToA = b.subtract(a);
  2364. var nextOffset = (bToA.length() + previousOffset);
  2365. if (lengthPosition >= previousOffset && lengthPosition <= nextOffset) {
  2366. var dir = bToA.normalize();
  2367. var localOffset = lengthPosition - previousOffset;
  2368. return new Vector2(a.x + (dir.x * localOffset), a.y + (dir.y * localOffset));
  2369. }
  2370. previousOffset = nextOffset;
  2371. }
  2372. BABYLON.Tools.Error("internal error");
  2373. return Vector2.Zero();
  2374. };
  2375. Path2.StartingAt = function (x, y) {
  2376. return new Path2(x, y);
  2377. };
  2378. return Path2;
  2379. })();
  2380. BABYLON.Path2 = Path2;
  2381. })(BABYLON || (BABYLON = {}));
  2382. //# sourceMappingURL=babylon.math.js.map