babylon.math.ts 100 KB

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