babylon.math.js 89 KB

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