Math-1124a290.js 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['exports', './when-54c2dc71', './Check-6c0211bc'], function (exports, when, Check) { 'use strict';
  24. /*
  25. I've wrapped Makoto Matsumoto and Takuji Nishimura's code in a namespace
  26. so it's better encapsulated. Now you can have multiple random number generators
  27. and they won't stomp all over eachother's state.
  28. If you want to use this as a substitute for Math.random(), use the random()
  29. method like so:
  30. var m = new MersenneTwister();
  31. var randomNumber = m.random();
  32. You can also call the other genrand_{foo}() methods on the instance.
  33. If you want to use a specific seed in order to get a repeatable random
  34. sequence, pass an integer into the constructor:
  35. var m = new MersenneTwister(123);
  36. and that will always produce the same random sequence.
  37. Sean McCullough (banksean@gmail.com)
  38. */
  39. /*
  40. A C-program for MT19937, with initialization improved 2002/1/26.
  41. Coded by Takuji Nishimura and Makoto Matsumoto.
  42. Before using, initialize the state by using init_genrand(seed)
  43. or init_by_array(init_key, key_length).
  44. */
  45. /**
  46. @license
  47. mersenne-twister.js - https://gist.github.com/banksean/300494
  48. Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
  49. All rights reserved.
  50. Redistribution and use in source and binary forms, with or without
  51. modification, are permitted provided that the following conditions
  52. are met:
  53. 1. Redistributions of source code must retain the above copyright
  54. notice, this list of conditions and the following disclaimer.
  55. 2. Redistributions in binary form must reproduce the above copyright
  56. notice, this list of conditions and the following disclaimer in the
  57. documentation and/or other materials provided with the distribution.
  58. 3. The names of its contributors may not be used to endorse or promote
  59. products derived from this software without specific prior written
  60. permission.
  61. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  62. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  63. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  64. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  65. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  66. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  67. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  68. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  69. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  70. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  71. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  72. */
  73. /*
  74. Any feedback is very welcome.
  75. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
  76. email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
  77. */
  78. function MersenneTwister(seed) {
  79. if (seed == undefined) {
  80. seed = new Date().getTime();
  81. }
  82. /* Period parameters */
  83. this.N = 624;
  84. this.M = 397;
  85. this.MATRIX_A = 0x9908b0df; /* constant vector a */
  86. this.UPPER_MASK = 0x80000000; /* most significant w-r bits */
  87. this.LOWER_MASK = 0x7fffffff; /* least significant r bits */
  88. this.mt = new Array(this.N); /* the array for the state vector */
  89. this.mti=this.N+1; /* mti==N+1 means mt[N] is not initialized */
  90. this.init_genrand(seed);
  91. }
  92. /* initializes mt[N] with a seed */
  93. MersenneTwister.prototype.init_genrand = function(s) {
  94. this.mt[0] = s >>> 0;
  95. for (this.mti=1; this.mti<this.N; this.mti++) {
  96. var s = this.mt[this.mti-1] ^ (this.mt[this.mti-1] >>> 30);
  97. this.mt[this.mti] = (((((s & 0xffff0000) >>> 16) * 1812433253) << 16) + (s & 0x0000ffff) * 1812433253)
  98. + this.mti;
  99. /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
  100. /* In the previous versions, MSBs of the seed affect */
  101. /* only MSBs of the array mt[]. */
  102. /* 2002/01/09 modified by Makoto Matsumoto */
  103. this.mt[this.mti] >>>= 0;
  104. /* for >32 bit machines */
  105. }
  106. };
  107. /* initialize by an array with array-length */
  108. /* init_key is the array for initializing keys */
  109. /* key_length is its length */
  110. /* slight change for C++, 2004/2/26 */
  111. //MersenneTwister.prototype.init_by_array = function(init_key, key_length) {
  112. // var i, j, k;
  113. // this.init_genrand(19650218);
  114. // i=1; j=0;
  115. // k = (this.N>key_length ? this.N : key_length);
  116. // for (; k; k--) {
  117. // var s = this.mt[i-1] ^ (this.mt[i-1] >>> 30)
  118. // this.mt[i] = (this.mt[i] ^ (((((s & 0xffff0000) >>> 16) * 1664525) << 16) + ((s & 0x0000ffff) * 1664525)))
  119. // + init_key[j] + j; /* non linear */
  120. // this.mt[i] >>>= 0; /* for WORDSIZE > 32 machines */
  121. // i++; j++;
  122. // if (i>=this.N) { this.mt[0] = this.mt[this.N-1]; i=1; }
  123. // if (j>=key_length) j=0;
  124. // }
  125. // for (k=this.N-1; k; k--) {
  126. // var s = this.mt[i-1] ^ (this.mt[i-1] >>> 30);
  127. // this.mt[i] = (this.mt[i] ^ (((((s & 0xffff0000) >>> 16) * 1566083941) << 16) + (s & 0x0000ffff) * 1566083941))
  128. // - i; /* non linear */
  129. // this.mt[i] >>>= 0; /* for WORDSIZE > 32 machines */
  130. // i++;
  131. // if (i>=this.N) { this.mt[0] = this.mt[this.N-1]; i=1; }
  132. // }
  133. //
  134. // this.mt[0] = 0x80000000; /* MSB is 1; assuring non-zero initial array */
  135. //}
  136. /* generates a random number on [0,0xffffffff]-interval */
  137. MersenneTwister.prototype.genrand_int32 = function() {
  138. var y;
  139. var mag01 = new Array(0x0, this.MATRIX_A);
  140. /* mag01[x] = x * MATRIX_A for x=0,1 */
  141. if (this.mti >= this.N) { /* generate N words at one time */
  142. var kk;
  143. if (this.mti == this.N+1) /* if init_genrand() has not been called, */
  144. this.init_genrand(5489); /* a default initial seed is used */
  145. for (kk=0;kk<this.N-this.M;kk++) {
  146. y = (this.mt[kk]&this.UPPER_MASK)|(this.mt[kk+1]&this.LOWER_MASK);
  147. this.mt[kk] = this.mt[kk+this.M] ^ (y >>> 1) ^ mag01[y & 0x1];
  148. }
  149. for (;kk<this.N-1;kk++) {
  150. y = (this.mt[kk]&this.UPPER_MASK)|(this.mt[kk+1]&this.LOWER_MASK);
  151. this.mt[kk] = this.mt[kk+(this.M-this.N)] ^ (y >>> 1) ^ mag01[y & 0x1];
  152. }
  153. y = (this.mt[this.N-1]&this.UPPER_MASK)|(this.mt[0]&this.LOWER_MASK);
  154. this.mt[this.N-1] = this.mt[this.M-1] ^ (y >>> 1) ^ mag01[y & 0x1];
  155. this.mti = 0;
  156. }
  157. y = this.mt[this.mti++];
  158. /* Tempering */
  159. y ^= (y >>> 11);
  160. y ^= (y << 7) & 0x9d2c5680;
  161. y ^= (y << 15) & 0xefc60000;
  162. y ^= (y >>> 18);
  163. return y >>> 0;
  164. };
  165. /* generates a random number on [0,0x7fffffff]-interval */
  166. //MersenneTwister.prototype.genrand_int31 = function() {
  167. // return (this.genrand_int32()>>>1);
  168. //}
  169. /* generates a random number on [0,1]-real-interval */
  170. //MersenneTwister.prototype.genrand_real1 = function() {
  171. // return this.genrand_int32()*(1.0/4294967295.0);
  172. // /* divided by 2^32-1 */
  173. //}
  174. /* generates a random number on [0,1)-real-interval */
  175. MersenneTwister.prototype.random = function() {
  176. return this.genrand_int32()*(1.0/4294967296.0);
  177. /* divided by 2^32 */
  178. };
  179. /**
  180. * Math functions.
  181. *
  182. * @exports CesiumMath
  183. * @alias Math
  184. */
  185. var CesiumMath = {};
  186. /**
  187. * 0.1
  188. * @type {Number}
  189. * @constant
  190. */
  191. CesiumMath.EPSILON1 = 0.1;
  192. /**
  193. * 0.01
  194. * @type {Number}
  195. * @constant
  196. */
  197. CesiumMath.EPSILON2 = 0.01;
  198. /**
  199. * 0.001
  200. * @type {Number}
  201. * @constant
  202. */
  203. CesiumMath.EPSILON3 = 0.001;
  204. /**
  205. * 0.0001
  206. * @type {Number}
  207. * @constant
  208. */
  209. CesiumMath.EPSILON4 = 0.0001;
  210. /**
  211. * 0.00001
  212. * @type {Number}
  213. * @constant
  214. */
  215. CesiumMath.EPSILON5 = 0.00001;
  216. /**
  217. * 0.000001
  218. * @type {Number}
  219. * @constant
  220. */
  221. CesiumMath.EPSILON6 = 0.000001;
  222. /**
  223. * 0.0000001
  224. * @type {Number}
  225. * @constant
  226. */
  227. CesiumMath.EPSILON7 = 0.0000001;
  228. /**
  229. * 0.00000001
  230. * @type {Number}
  231. * @constant
  232. */
  233. CesiumMath.EPSILON8 = 0.00000001;
  234. /**
  235. * 0.000000001
  236. * @type {Number}
  237. * @constant
  238. */
  239. CesiumMath.EPSILON9 = 0.000000001;
  240. /**
  241. * 0.0000000001
  242. * @type {Number}
  243. * @constant
  244. */
  245. CesiumMath.EPSILON10 = 0.0000000001;
  246. /**
  247. * 0.00000000001
  248. * @type {Number}
  249. * @constant
  250. */
  251. CesiumMath.EPSILON11 = 0.00000000001;
  252. /**
  253. * 0.000000000001
  254. * @type {Number}
  255. * @constant
  256. */
  257. CesiumMath.EPSILON12 = 0.000000000001;
  258. /**
  259. * 0.0000000000001
  260. * @type {Number}
  261. * @constant
  262. */
  263. CesiumMath.EPSILON13 = 0.0000000000001;
  264. /**
  265. * 0.00000000000001
  266. * @type {Number}
  267. * @constant
  268. */
  269. CesiumMath.EPSILON14 = 0.00000000000001;
  270. /**
  271. * 0.000000000000001
  272. * @type {Number}
  273. * @constant
  274. */
  275. CesiumMath.EPSILON15 = 0.000000000000001;
  276. /**
  277. * 0.0000000000000001
  278. * @type {Number}
  279. * @constant
  280. */
  281. CesiumMath.EPSILON16 = 0.0000000000000001;
  282. /**
  283. * 0.00000000000000001
  284. * @type {Number}
  285. * @constant
  286. */
  287. CesiumMath.EPSILON17 = 0.00000000000000001;
  288. /**
  289. * 0.000000000000000001
  290. * @type {Number}
  291. * @constant
  292. */
  293. CesiumMath.EPSILON18 = 0.000000000000000001;
  294. /**
  295. * 0.0000000000000000001
  296. * @type {Number}
  297. * @constant
  298. */
  299. CesiumMath.EPSILON19 = 0.0000000000000000001;
  300. /**
  301. * 0.00000000000000000001
  302. * @type {Number}
  303. * @constant
  304. */
  305. CesiumMath.EPSILON20 = 0.00000000000000000001;
  306. /**
  307. * 0.000000000000000000001
  308. * @type {Number}
  309. * @constant
  310. */
  311. CesiumMath.EPSILON21 = 0.000000000000000000001;
  312. /**
  313. * The gravitational parameter of the Earth in meters cubed
  314. * per second squared as defined by the WGS84 model: 3.986004418e14
  315. * @type {Number}
  316. * @constant
  317. */
  318. CesiumMath.GRAVITATIONALPARAMETER = 3.986004418e14;
  319. /**
  320. * Radius of the sun in meters: 6.955e8
  321. * @type {Number}
  322. * @constant
  323. */
  324. CesiumMath.SOLAR_RADIUS = 6.955e8;
  325. /**
  326. * The mean radius of the moon, according to the "Report of the IAU/IAG Working Group on
  327. * Cartographic Coordinates and Rotational Elements of the Planets and satellites: 2000",
  328. * Celestial Mechanics 82: 83-110, 2002.
  329. * @type {Number}
  330. * @constant
  331. */
  332. CesiumMath.LUNAR_RADIUS = 1737400.0;
  333. /**
  334. * 64 * 1024
  335. * @type {Number}
  336. * @constant
  337. */
  338. CesiumMath.SIXTY_FOUR_KILOBYTES = 64 * 1024;
  339. /**
  340. * 4 * 1024 * 1024 * 1024
  341. * @type {Number}
  342. * @constant
  343. */
  344. CesiumMath.FOUR_GIGABYTES = 4 * 1024 * 1024 * 1024;
  345. /**
  346. * Returns the sign of the value; 1 if the value is positive, -1 if the value is
  347. * negative, or 0 if the value is 0.
  348. *
  349. * @function
  350. * @param {Number} value The value to return the sign of.
  351. * @returns {Number} The sign of value.
  352. */
  353. CesiumMath.sign = when.defaultValue(Math.sign, function sign(value) {
  354. value = +value; // coerce to number
  355. if (value === 0 || value !== value) {
  356. // zero or NaN
  357. return value;
  358. }
  359. return value > 0 ? 1 : -1;
  360. });
  361. /**
  362. * Returns 1.0 if the given value is positive or zero, and -1.0 if it is negative.
  363. * This is similar to {@link CesiumMath#sign} except that returns 1.0 instead of
  364. * 0.0 when the input value is 0.0.
  365. * @param {Number} value The value to return the sign of.
  366. * @returns {Number} The sign of value.
  367. */
  368. CesiumMath.signNotZero = function (value) {
  369. return value < 0.0 ? -1.0 : 1.0;
  370. };
  371. /**
  372. * Converts a scalar value in the range [-1.0, 1.0] to a SNORM in the range [0, rangeMaximum]
  373. * @param {Number} value The scalar value in the range [-1.0, 1.0]
  374. * @param {Number} [rangeMaximum=255] The maximum value in the mapped range, 255 by default.
  375. * @returns {Number} A SNORM value, where 0 maps to -1.0 and rangeMaximum maps to 1.0.
  376. *
  377. * @see CesiumMath.fromSNorm
  378. */
  379. CesiumMath.toSNorm = function (value, rangeMaximum) {
  380. rangeMaximum = when.defaultValue(rangeMaximum, 255);
  381. return Math.round(
  382. (CesiumMath.clamp(value, -1.0, 1.0) * 0.5 + 0.5) * rangeMaximum
  383. );
  384. };
  385. /**
  386. * Converts a SNORM value in the range [0, rangeMaximum] to a scalar in the range [-1.0, 1.0].
  387. * @param {Number} value SNORM value in the range [0, rangeMaximum]
  388. * @param {Number} [rangeMaximum=255] The maximum value in the SNORM range, 255 by default.
  389. * @returns {Number} Scalar in the range [-1.0, 1.0].
  390. *
  391. * @see CesiumMath.toSNorm
  392. */
  393. CesiumMath.fromSNorm = function (value, rangeMaximum) {
  394. rangeMaximum = when.defaultValue(rangeMaximum, 255);
  395. return (
  396. (CesiumMath.clamp(value, 0.0, rangeMaximum) / rangeMaximum) * 2.0 - 1.0
  397. );
  398. };
  399. /**
  400. * Converts a scalar value in the range [rangeMinimum, rangeMaximum] to a scalar in the range [0.0, 1.0]
  401. * @param {Number} value The scalar value in the range [rangeMinimum, rangeMaximum]
  402. * @param {Number} rangeMinimum The minimum value in the mapped range.
  403. * @param {Number} rangeMaximum The maximum value in the mapped range.
  404. * @returns {Number} A scalar value, where rangeMinimum maps to 0.0 and rangeMaximum maps to 1.0.
  405. */
  406. CesiumMath.normalize = function (value, rangeMinimum, rangeMaximum) {
  407. rangeMaximum = Math.max(rangeMaximum - rangeMinimum, 0.0);
  408. return rangeMaximum === 0.0
  409. ? 0.0
  410. : CesiumMath.clamp((value - rangeMinimum) / rangeMaximum, 0.0, 1.0);
  411. };
  412. /**
  413. * Returns the hyperbolic sine of a number.
  414. * The hyperbolic sine of <em>value</em> is defined to be
  415. * (<em>e<sup>x</sup>&nbsp;-&nbsp;e<sup>-x</sup></em>)/2.0
  416. * where <i>e</i> is Euler's number, approximately 2.71828183.
  417. *
  418. * <p>Special cases:
  419. * <ul>
  420. * <li>If the argument is NaN, then the result is NaN.</li>
  421. *
  422. * <li>If the argument is infinite, then the result is an infinity
  423. * with the same sign as the argument.</li>
  424. *
  425. * <li>If the argument is zero, then the result is a zero with the
  426. * same sign as the argument.</li>
  427. * </ul>
  428. *</p>
  429. *
  430. * @function
  431. * @param {Number} value The number whose hyperbolic sine is to be returned.
  432. * @returns {Number} The hyperbolic sine of <code>value</code>.
  433. */
  434. CesiumMath.sinh = when.defaultValue(Math.sinh, function sinh(value) {
  435. return (Math.exp(value) - Math.exp(-value)) / 2.0;
  436. });
  437. /**
  438. * Returns the hyperbolic cosine of a number.
  439. * The hyperbolic cosine of <strong>value</strong> is defined to be
  440. * (<em>e<sup>x</sup>&nbsp;+&nbsp;e<sup>-x</sup></em>)/2.0
  441. * where <i>e</i> is Euler's number, approximately 2.71828183.
  442. *
  443. * <p>Special cases:
  444. * <ul>
  445. * <li>If the argument is NaN, then the result is NaN.</li>
  446. *
  447. * <li>If the argument is infinite, then the result is positive infinity.</li>
  448. *
  449. * <li>If the argument is zero, then the result is 1.0.</li>
  450. * </ul>
  451. *</p>
  452. *
  453. * @function
  454. * @param {Number} value The number whose hyperbolic cosine is to be returned.
  455. * @returns {Number} The hyperbolic cosine of <code>value</code>.
  456. */
  457. CesiumMath.cosh = when.defaultValue(Math.cosh, function cosh(value) {
  458. return (Math.exp(value) + Math.exp(-value)) / 2.0;
  459. });
  460. /**
  461. * Computes the linear interpolation of two values.
  462. *
  463. * @param {Number} p The start value to interpolate.
  464. * @param {Number} q The end value to interpolate.
  465. * @param {Number} time The time of interpolation generally in the range <code>[0.0, 1.0]</code>.
  466. * @returns {Number} The linearly interpolated value.
  467. *
  468. * @example
  469. * var n = Cesium.Math.lerp(0.0, 2.0, 0.5); // returns 1.0
  470. */
  471. CesiumMath.lerp = function (p, q, time) {
  472. return (1.0 - time) * p + time * q;
  473. };
  474. /**
  475. * pi
  476. *
  477. * @type {Number}
  478. * @constant
  479. */
  480. CesiumMath.PI = Math.PI;
  481. /**
  482. * 1/pi
  483. *
  484. * @type {Number}
  485. * @constant
  486. */
  487. CesiumMath.ONE_OVER_PI = 1.0 / Math.PI;
  488. /**
  489. * pi/2
  490. *
  491. * @type {Number}
  492. * @constant
  493. */
  494. CesiumMath.PI_OVER_TWO = Math.PI / 2.0;
  495. /**
  496. * pi/3
  497. *
  498. * @type {Number}
  499. * @constant
  500. */
  501. CesiumMath.PI_OVER_THREE = Math.PI / 3.0;
  502. /**
  503. * pi/4
  504. *
  505. * @type {Number}
  506. * @constant
  507. */
  508. CesiumMath.PI_OVER_FOUR = Math.PI / 4.0;
  509. /**
  510. * pi/6
  511. *
  512. * @type {Number}
  513. * @constant
  514. */
  515. CesiumMath.PI_OVER_SIX = Math.PI / 6.0;
  516. /**
  517. * 3pi/2
  518. *
  519. * @type {Number}
  520. * @constant
  521. */
  522. CesiumMath.THREE_PI_OVER_TWO = (3.0 * Math.PI) / 2.0;
  523. /**
  524. * 2pi
  525. *
  526. * @type {Number}
  527. * @constant
  528. */
  529. CesiumMath.TWO_PI = 2.0 * Math.PI;
  530. /**
  531. * 1/2pi
  532. *
  533. * @type {Number}
  534. * @constant
  535. */
  536. CesiumMath.ONE_OVER_TWO_PI = 1.0 / (2.0 * Math.PI);
  537. /**
  538. * The number of radians in a degree.
  539. *
  540. * @type {Number}
  541. * @constant
  542. */
  543. CesiumMath.RADIANS_PER_DEGREE = Math.PI / 180.0;
  544. /**
  545. * The number of degrees in a radian.
  546. *
  547. * @type {Number}
  548. * @constant
  549. */
  550. CesiumMath.DEGREES_PER_RADIAN = 180.0 / Math.PI;
  551. /**
  552. * The number of radians in an arc second.
  553. *
  554. * @type {Number}
  555. * @constant
  556. */
  557. CesiumMath.RADIANS_PER_ARCSECOND = CesiumMath.RADIANS_PER_DEGREE / 3600.0;
  558. /**
  559. * Converts degrees to radians.
  560. * @param {Number} degrees The angle to convert in degrees.
  561. * @returns {Number} The corresponding angle in radians.
  562. */
  563. CesiumMath.toRadians = function (degrees) {
  564. //>>includeStart('debug', pragmas.debug);
  565. if (!when.defined(degrees)) {
  566. throw new Check.DeveloperError("degrees is required.");
  567. }
  568. //>>includeEnd('debug');
  569. return degrees * CesiumMath.RADIANS_PER_DEGREE;
  570. };
  571. /**
  572. * Converts radians to degrees.
  573. * @param {Number} radians The angle to convert in radians.
  574. * @returns {Number} The corresponding angle in degrees.
  575. */
  576. CesiumMath.toDegrees = function (radians) {
  577. //>>includeStart('debug', pragmas.debug);
  578. if (!when.defined(radians)) {
  579. throw new Check.DeveloperError("radians is required.");
  580. }
  581. //>>includeEnd('debug');
  582. return radians * CesiumMath.DEGREES_PER_RADIAN;
  583. };
  584. /**
  585. * Converts a longitude value, in radians, to the range [<code>-Math.PI</code>, <code>Math.PI</code>).
  586. *
  587. * @param {Number} angle The longitude value, in radians, to convert to the range [<code>-Math.PI</code>, <code>Math.PI</code>).
  588. * @returns {Number} The equivalent longitude value in the range [<code>-Math.PI</code>, <code>Math.PI</code>).
  589. *
  590. * @example
  591. * // Convert 270 degrees to -90 degrees longitude
  592. * var longitude = Cesium.Math.convertLongitudeRange(Cesium.Math.toRadians(270.0));
  593. */
  594. CesiumMath.convertLongitudeRange = function (angle) {
  595. //>>includeStart('debug', pragmas.debug);
  596. if (!when.defined(angle)) {
  597. throw new Check.DeveloperError("angle is required.");
  598. }
  599. //>>includeEnd('debug');
  600. var twoPi = CesiumMath.TWO_PI;
  601. var simplified = angle - Math.floor(angle / twoPi) * twoPi;
  602. if (simplified < -Math.PI) {
  603. return simplified + twoPi;
  604. }
  605. if (simplified >= Math.PI) {
  606. return simplified - twoPi;
  607. }
  608. return simplified;
  609. };
  610. /**
  611. * Convenience function that clamps a latitude value, in radians, to the range [<code>-Math.PI/2</code>, <code>Math.PI/2</code>).
  612. * Useful for sanitizing data before use in objects requiring correct range.
  613. *
  614. * @param {Number} angle The latitude value, in radians, to clamp to the range [<code>-Math.PI/2</code>, <code>Math.PI/2</code>).
  615. * @returns {Number} The latitude value clamped to the range [<code>-Math.PI/2</code>, <code>Math.PI/2</code>).
  616. *
  617. * @example
  618. * // Clamp 108 degrees latitude to 90 degrees latitude
  619. * var latitude = Cesium.Math.clampToLatitudeRange(Cesium.Math.toRadians(108.0));
  620. */
  621. CesiumMath.clampToLatitudeRange = function (angle) {
  622. //>>includeStart('debug', pragmas.debug);
  623. if (!when.defined(angle)) {
  624. throw new Check.DeveloperError("angle is required.");
  625. }
  626. //>>includeEnd('debug');
  627. return CesiumMath.clamp(
  628. angle,
  629. -1 * CesiumMath.PI_OVER_TWO,
  630. CesiumMath.PI_OVER_TWO
  631. );
  632. };
  633. /**
  634. * Produces an angle in the range -Pi <= angle <= Pi which is equivalent to the provided angle.
  635. *
  636. * @param {Number} angle in radians
  637. * @returns {Number} The angle in the range [<code>-CesiumMath.PI</code>, <code>CesiumMath.PI</code>].
  638. */
  639. CesiumMath.negativePiToPi = function (angle) {
  640. //>>includeStart('debug', pragmas.debug);
  641. if (!when.defined(angle)) {
  642. throw new Check.DeveloperError("angle is required.");
  643. }
  644. //>>includeEnd('debug');
  645. return CesiumMath.zeroToTwoPi(angle + CesiumMath.PI) - CesiumMath.PI;
  646. };
  647. /**
  648. * Produces an angle in the range 0 <= angle <= 2Pi which is equivalent to the provided angle.
  649. *
  650. * @param {Number} angle in radians
  651. * @returns {Number} The angle in the range [0, <code>CesiumMath.TWO_PI</code>].
  652. */
  653. CesiumMath.zeroToTwoPi = function (angle) {
  654. //>>includeStart('debug', pragmas.debug);
  655. if (!when.defined(angle)) {
  656. throw new Check.DeveloperError("angle is required.");
  657. }
  658. //>>includeEnd('debug');
  659. var mod = CesiumMath.mod(angle, CesiumMath.TWO_PI);
  660. if (
  661. Math.abs(mod) < CesiumMath.EPSILON14 &&
  662. Math.abs(angle) > CesiumMath.EPSILON14
  663. ) {
  664. return CesiumMath.TWO_PI;
  665. }
  666. return mod;
  667. };
  668. /**
  669. * The modulo operation that also works for negative dividends.
  670. *
  671. * @param {Number} m The dividend.
  672. * @param {Number} n The divisor.
  673. * @returns {Number} The remainder.
  674. */
  675. CesiumMath.mod = function (m, n) {
  676. //>>includeStart('debug', pragmas.debug);
  677. if (!when.defined(m)) {
  678. throw new Check.DeveloperError("m is required.");
  679. }
  680. if (!when.defined(n)) {
  681. throw new Check.DeveloperError("n is required.");
  682. }
  683. //>>includeEnd('debug');
  684. return ((m % n) + n) % n;
  685. };
  686. /**
  687. * Determines if two values are equal using an absolute or relative tolerance test. This is useful
  688. * to avoid problems due to roundoff error when comparing floating-point values directly. The values are
  689. * first compared using an absolute tolerance test. If that fails, a relative tolerance test is performed.
  690. * Use this test if you are unsure of the magnitudes of left and right.
  691. *
  692. * @param {Number} left The first value to compare.
  693. * @param {Number} right The other value to compare.
  694. * @param {Number} [relativeEpsilon=0] The maximum inclusive delta between <code>left</code> and <code>right</code> for the relative tolerance test.
  695. * @param {Number} [absoluteEpsilon=relativeEpsilon] The maximum inclusive delta between <code>left</code> and <code>right</code> for the absolute tolerance test.
  696. * @returns {Boolean} <code>true</code> if the values are equal within the epsilon; otherwise, <code>false</code>.
  697. *
  698. * @example
  699. * var a = Cesium.Math.equalsEpsilon(0.0, 0.01, Cesium.Math.EPSILON2); // true
  700. * var b = Cesium.Math.equalsEpsilon(0.0, 0.1, Cesium.Math.EPSILON2); // false
  701. * var c = Cesium.Math.equalsEpsilon(3699175.1634344, 3699175.2, Cesium.Math.EPSILON7); // true
  702. * var d = Cesium.Math.equalsEpsilon(3699175.1634344, 3699175.2, Cesium.Math.EPSILON9); // false
  703. */
  704. CesiumMath.equalsEpsilon = function (
  705. left,
  706. right,
  707. relativeEpsilon,
  708. absoluteEpsilon
  709. ) {
  710. //>>includeStart('debug', pragmas.debug);
  711. if (!when.defined(left)) {
  712. throw new Check.DeveloperError("left is required.");
  713. }
  714. if (!when.defined(right)) {
  715. throw new Check.DeveloperError("right is required.");
  716. }
  717. //>>includeEnd('debug');
  718. relativeEpsilon = when.defaultValue(relativeEpsilon, 0.0);
  719. absoluteEpsilon = when.defaultValue(absoluteEpsilon, relativeEpsilon);
  720. var absDiff = Math.abs(left - right);
  721. return (
  722. absDiff <= absoluteEpsilon ||
  723. absDiff <= relativeEpsilon * Math.max(Math.abs(left), Math.abs(right))
  724. );
  725. };
  726. /**
  727. * Determines if the left value is less than the right value. If the two values are within
  728. * <code>absoluteEpsilon</code> of each other, they are considered equal and this function returns false.
  729. *
  730. * @param {Number} left The first number to compare.
  731. * @param {Number} right The second number to compare.
  732. * @param {Number} absoluteEpsilon The absolute epsilon to use in comparison.
  733. * @returns {Boolean} <code>true</code> if <code>left</code> is less than <code>right</code> by more than
  734. * <code>absoluteEpsilon<code>. <code>false</code> if <code>left</code> is greater or if the two
  735. * values are nearly equal.
  736. */
  737. CesiumMath.lessThan = function (left, right, absoluteEpsilon) {
  738. //>>includeStart('debug', pragmas.debug);
  739. if (!when.defined(left)) {
  740. throw new Check.DeveloperError("first is required.");
  741. }
  742. if (!when.defined(right)) {
  743. throw new Check.DeveloperError("second is required.");
  744. }
  745. if (!when.defined(absoluteEpsilon)) {
  746. throw new Check.DeveloperError("relativeEpsilon is required.");
  747. }
  748. //>>includeEnd('debug');
  749. return left - right < -absoluteEpsilon;
  750. };
  751. /**
  752. * Determines if the left value is less than or equal to the right value. If the two values are within
  753. * <code>absoluteEpsilon</code> of each other, they are considered equal and this function returns true.
  754. *
  755. * @param {Number} left The first number to compare.
  756. * @param {Number} right The second number to compare.
  757. * @param {Number} absoluteEpsilon The absolute epsilon to use in comparison.
  758. * @returns {Boolean} <code>true</code> if <code>left</code> is less than <code>right</code> or if the
  759. * the values are nearly equal.
  760. */
  761. CesiumMath.lessThanOrEquals = function (left, right, absoluteEpsilon) {
  762. //>>includeStart('debug', pragmas.debug);
  763. if (!when.defined(left)) {
  764. throw new Check.DeveloperError("first is required.");
  765. }
  766. if (!when.defined(right)) {
  767. throw new Check.DeveloperError("second is required.");
  768. }
  769. if (!when.defined(absoluteEpsilon)) {
  770. throw new Check.DeveloperError("relativeEpsilon is required.");
  771. }
  772. //>>includeEnd('debug');
  773. return left - right < absoluteEpsilon;
  774. };
  775. /**
  776. * Determines if the left value is greater the right value. If the two values are within
  777. * <code>absoluteEpsilon</code> of each other, they are considered equal and this function returns false.
  778. *
  779. * @param {Number} left The first number to compare.
  780. * @param {Number} right The second number to compare.
  781. * @param {Number} absoluteEpsilon The absolute epsilon to use in comparison.
  782. * @returns {Boolean} <code>true</code> if <code>left</code> is greater than <code>right</code> by more than
  783. * <code>absoluteEpsilon<code>. <code>false</code> if <code>left</code> is less or if the two
  784. * values are nearly equal.
  785. */
  786. CesiumMath.greaterThan = function (left, right, absoluteEpsilon) {
  787. //>>includeStart('debug', pragmas.debug);
  788. if (!when.defined(left)) {
  789. throw new Check.DeveloperError("first is required.");
  790. }
  791. if (!when.defined(right)) {
  792. throw new Check.DeveloperError("second is required.");
  793. }
  794. if (!when.defined(absoluteEpsilon)) {
  795. throw new Check.DeveloperError("relativeEpsilon is required.");
  796. }
  797. //>>includeEnd('debug');
  798. return left - right > absoluteEpsilon;
  799. };
  800. /**
  801. * Determines if the left value is greater than or equal to the right value. If the two values are within
  802. * <code>absoluteEpsilon</code> of each other, they are considered equal and this function returns true.
  803. *
  804. * @param {Number} left The first number to compare.
  805. * @param {Number} right The second number to compare.
  806. * @param {Number} absoluteEpsilon The absolute epsilon to use in comparison.
  807. * @returns {Boolean} <code>true</code> if <code>left</code> is greater than <code>right</code> or if the
  808. * the values are nearly equal.
  809. */
  810. CesiumMath.greaterThanOrEquals = function (left, right, absoluteEpsilon) {
  811. //>>includeStart('debug', pragmas.debug);
  812. if (!when.defined(left)) {
  813. throw new Check.DeveloperError("first is required.");
  814. }
  815. if (!when.defined(right)) {
  816. throw new Check.DeveloperError("second is required.");
  817. }
  818. if (!when.defined(absoluteEpsilon)) {
  819. throw new Check.DeveloperError("relativeEpsilon is required.");
  820. }
  821. //>>includeEnd('debug');
  822. return left - right > -absoluteEpsilon;
  823. };
  824. var factorials = [1];
  825. /**
  826. * Computes the factorial of the provided number.
  827. *
  828. * @param {Number} n The number whose factorial is to be computed.
  829. * @returns {Number} The factorial of the provided number or undefined if the number is less than 0.
  830. *
  831. * @exception {DeveloperError} A number greater than or equal to 0 is required.
  832. *
  833. *
  834. * @example
  835. * //Compute 7!, which is equal to 5040
  836. * var computedFactorial = Cesium.Math.factorial(7);
  837. *
  838. * @see {@link http://en.wikipedia.org/wiki/Factorial|Factorial on Wikipedia}
  839. */
  840. CesiumMath.factorial = function (n) {
  841. //>>includeStart('debug', pragmas.debug);
  842. if (typeof n !== "number" || n < 0) {
  843. throw new Check.DeveloperError(
  844. "A number greater than or equal to 0 is required."
  845. );
  846. }
  847. //>>includeEnd('debug');
  848. var length = factorials.length;
  849. if (n >= length) {
  850. var sum = factorials[length - 1];
  851. for (var i = length; i <= n; i++) {
  852. var next = sum * i;
  853. factorials.push(next);
  854. sum = next;
  855. }
  856. }
  857. return factorials[n];
  858. };
  859. /**
  860. * Increments a number with a wrapping to a minimum value if the number exceeds the maximum value.
  861. *
  862. * @param {Number} [n] The number to be incremented.
  863. * @param {Number} [maximumValue] The maximum incremented value before rolling over to the minimum value.
  864. * @param {Number} [minimumValue=0.0] The number reset to after the maximum value has been exceeded.
  865. * @returns {Number} The incremented number.
  866. *
  867. * @exception {DeveloperError} Maximum value must be greater than minimum value.
  868. *
  869. * @example
  870. * var n = Cesium.Math.incrementWrap(5, 10, 0); // returns 6
  871. * var n = Cesium.Math.incrementWrap(10, 10, 0); // returns 0
  872. */
  873. CesiumMath.incrementWrap = function (n, maximumValue, minimumValue) {
  874. minimumValue = when.defaultValue(minimumValue, 0.0);
  875. //>>includeStart('debug', pragmas.debug);
  876. if (!when.defined(n)) {
  877. throw new Check.DeveloperError("n is required.");
  878. }
  879. if (maximumValue <= minimumValue) {
  880. throw new Check.DeveloperError("maximumValue must be greater than minimumValue.");
  881. }
  882. //>>includeEnd('debug');
  883. ++n;
  884. if (n > maximumValue) {
  885. n = minimumValue;
  886. }
  887. return n;
  888. };
  889. /**
  890. * Determines if a positive integer is a power of two.
  891. *
  892. * @param {Number} n The positive integer to test.
  893. * @returns {Boolean} <code>true</code> if the number if a power of two; otherwise, <code>false</code>.
  894. *
  895. * @exception {DeveloperError} A number greater than or equal to 0 is required.
  896. *
  897. * @example
  898. * var t = Cesium.Math.isPowerOfTwo(16); // true
  899. * var f = Cesium.Math.isPowerOfTwo(20); // false
  900. */
  901. CesiumMath.isPowerOfTwo = function (n) {
  902. //>>includeStart('debug', pragmas.debug);
  903. if (typeof n !== "number" || n < 0) {
  904. throw new Check.DeveloperError(
  905. "A number greater than or equal to 0 is required."
  906. );
  907. }
  908. //>>includeEnd('debug');
  909. return n !== 0 && (n & (n - 1)) === 0;
  910. };
  911. /**
  912. * Computes the next power-of-two integer greater than or equal to the provided positive integer.
  913. *
  914. * @param {Number} n The positive integer to test.
  915. * @returns {Number} The next power-of-two integer.
  916. *
  917. * @exception {DeveloperError} A number greater than or equal to 0 is required.
  918. *
  919. * @example
  920. * var n = Cesium.Math.nextPowerOfTwo(29); // 32
  921. * var m = Cesium.Math.nextPowerOfTwo(32); // 32
  922. */
  923. CesiumMath.nextPowerOfTwo = function (n) {
  924. //>>includeStart('debug', pragmas.debug);
  925. if (typeof n !== "number" || n < 0) {
  926. throw new Check.DeveloperError(
  927. "A number greater than or equal to 0 is required."
  928. );
  929. }
  930. //>>includeEnd('debug');
  931. // From http://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2
  932. --n;
  933. n |= n >> 1;
  934. n |= n >> 2;
  935. n |= n >> 4;
  936. n |= n >> 8;
  937. n |= n >> 16;
  938. ++n;
  939. return n;
  940. };
  941. /**
  942. * Constraint a value to lie between two values.
  943. *
  944. * @param {Number} value The value to constrain.
  945. * @param {Number} min The minimum value.
  946. * @param {Number} max The maximum value.
  947. * @returns {Number} The value clamped so that min <= value <= max.
  948. */
  949. CesiumMath.clamp = function (value, min, max) {
  950. //>>includeStart('debug', pragmas.debug);
  951. if (!when.defined(value)) {
  952. throw new Check.DeveloperError("value is required");
  953. }
  954. if (!when.defined(min)) {
  955. throw new Check.DeveloperError("min is required.");
  956. }
  957. if (!when.defined(max)) {
  958. throw new Check.DeveloperError("max is required.");
  959. }
  960. //>>includeEnd('debug');
  961. return value < min ? min : value > max ? max : value;
  962. };
  963. var randomNumberGenerator = new MersenneTwister();
  964. /**
  965. * Sets the seed used by the random number generator
  966. * in {@link CesiumMath#nextRandomNumber}.
  967. *
  968. * @param {Number} seed An integer used as the seed.
  969. */
  970. CesiumMath.setRandomNumberSeed = function (seed) {
  971. //>>includeStart('debug', pragmas.debug);
  972. if (!when.defined(seed)) {
  973. throw new Check.DeveloperError("seed is required.");
  974. }
  975. //>>includeEnd('debug');
  976. randomNumberGenerator = new MersenneTwister(seed);
  977. };
  978. /**
  979. * Generates a random floating point number in the range of [0.0, 1.0)
  980. * using a Mersenne twister.
  981. *
  982. * @returns {Number} A random number in the range of [0.0, 1.0).
  983. *
  984. * @see CesiumMath.setRandomNumberSeed
  985. * @see {@link http://en.wikipedia.org/wiki/Mersenne_twister|Mersenne twister on Wikipedia}
  986. */
  987. CesiumMath.nextRandomNumber = function () {
  988. return randomNumberGenerator.random();
  989. };
  990. /**
  991. * Generates a random number between two numbers.
  992. *
  993. * @param {Number} min The minimum value.
  994. * @param {Number} max The maximum value.
  995. * @returns {Number} A random number between the min and max.
  996. */
  997. CesiumMath.randomBetween = function (min, max) {
  998. return CesiumMath.nextRandomNumber() * (max - min) + min;
  999. };
  1000. /**
  1001. * Computes <code>Math.acos(value)</code>, but first clamps <code>value</code> to the range [-1.0, 1.0]
  1002. * so that the function will never return NaN.
  1003. *
  1004. * @param {Number} value The value for which to compute acos.
  1005. * @returns {Number} The acos of the value if the value is in the range [-1.0, 1.0], or the acos of -1.0 or 1.0,
  1006. * whichever is closer, if the value is outside the range.
  1007. */
  1008. CesiumMath.acosClamped = function (value) {
  1009. //>>includeStart('debug', pragmas.debug);
  1010. if (!when.defined(value)) {
  1011. throw new Check.DeveloperError("value is required.");
  1012. }
  1013. //>>includeEnd('debug');
  1014. return Math.acos(CesiumMath.clamp(value, -1.0, 1.0));
  1015. };
  1016. /**
  1017. * Computes <code>Math.asin(value)</code>, but first clamps <code>value</code> to the range [-1.0, 1.0]
  1018. * so that the function will never return NaN.
  1019. *
  1020. * @param {Number} value The value for which to compute asin.
  1021. * @returns {Number} The asin of the value if the value is in the range [-1.0, 1.0], or the asin of -1.0 or 1.0,
  1022. * whichever is closer, if the value is outside the range.
  1023. */
  1024. CesiumMath.asinClamped = function (value) {
  1025. //>>includeStart('debug', pragmas.debug);
  1026. if (!when.defined(value)) {
  1027. throw new Check.DeveloperError("value is required.");
  1028. }
  1029. //>>includeEnd('debug');
  1030. return Math.asin(CesiumMath.clamp(value, -1.0, 1.0));
  1031. };
  1032. /**
  1033. * Finds the chord length between two points given the circle's radius and the angle between the points.
  1034. *
  1035. * @param {Number} angle The angle between the two points.
  1036. * @param {Number} radius The radius of the circle.
  1037. * @returns {Number} The chord length.
  1038. */
  1039. CesiumMath.chordLength = function (angle, radius) {
  1040. //>>includeStart('debug', pragmas.debug);
  1041. if (!when.defined(angle)) {
  1042. throw new Check.DeveloperError("angle is required.");
  1043. }
  1044. if (!when.defined(radius)) {
  1045. throw new Check.DeveloperError("radius is required.");
  1046. }
  1047. //>>includeEnd('debug');
  1048. return 2.0 * radius * Math.sin(angle * 0.5);
  1049. };
  1050. /**
  1051. * Finds the logarithm of a number to a base.
  1052. *
  1053. * @param {Number} number The number.
  1054. * @param {Number} base The base.
  1055. * @returns {Number} The result.
  1056. */
  1057. CesiumMath.logBase = function (number, base) {
  1058. //>>includeStart('debug', pragmas.debug);
  1059. if (!when.defined(number)) {
  1060. throw new Check.DeveloperError("number is required.");
  1061. }
  1062. if (!when.defined(base)) {
  1063. throw new Check.DeveloperError("base is required.");
  1064. }
  1065. //>>includeEnd('debug');
  1066. return Math.log(number) / Math.log(base);
  1067. };
  1068. /**
  1069. * Finds the cube root of a number.
  1070. * Returns NaN if <code>number</code> is not provided.
  1071. *
  1072. * @function
  1073. * @param {Number} [number] The number.
  1074. * @returns {Number} The result.
  1075. */
  1076. CesiumMath.cbrt = when.defaultValue(Math.cbrt, function cbrt(number) {
  1077. var result = Math.pow(Math.abs(number), 1.0 / 3.0);
  1078. return number < 0.0 ? -result : result;
  1079. });
  1080. /**
  1081. * Finds the base 2 logarithm of a number.
  1082. *
  1083. * @function
  1084. * @param {Number} number The number.
  1085. * @returns {Number} The result.
  1086. */
  1087. CesiumMath.log2 = when.defaultValue(Math.log2, function log2(number) {
  1088. return Math.log(number) * Math.LOG2E;
  1089. });
  1090. /**
  1091. * @private
  1092. */
  1093. CesiumMath.fog = function (distanceToCamera, density) {
  1094. var scalar = distanceToCamera * density;
  1095. return 1.0 - Math.exp(-(scalar * scalar));
  1096. };
  1097. /**
  1098. * Computes a fast approximation of Atan for input in the range [-1, 1].
  1099. *
  1100. * Based on Michal Drobot's approximation from ShaderFastLibs,
  1101. * which in turn is based on "Efficient approximations for the arctangent function,"
  1102. * Rajan, S. Sichun Wang Inkol, R. Joyal, A., May 2006.
  1103. * Adapted from ShaderFastLibs under MIT License.
  1104. *
  1105. * @param {Number} x An input number in the range [-1, 1]
  1106. * @returns {Number} An approximation of atan(x)
  1107. */
  1108. CesiumMath.fastApproximateAtan = function (x) {
  1109. //>>includeStart('debug', pragmas.debug);
  1110. Check.Check.typeOf.number("x", x);
  1111. //>>includeEnd('debug');
  1112. return x * (-0.1784 * Math.abs(x) - 0.0663 * x * x + 1.0301);
  1113. };
  1114. /**
  1115. * Computes a fast approximation of Atan2(x, y) for arbitrary input scalars.
  1116. *
  1117. * Range reduction math based on nvidia's cg reference implementation: http://developer.download.nvidia.com/cg/atan2.html
  1118. *
  1119. * @param {Number} x An input number that isn't zero if y is zero.
  1120. * @param {Number} y An input number that isn't zero if x is zero.
  1121. * @returns {Number} An approximation of atan2(x, y)
  1122. */
  1123. CesiumMath.fastApproximateAtan2 = function (x, y) {
  1124. //>>includeStart('debug', pragmas.debug);
  1125. Check.Check.typeOf.number("x", x);
  1126. Check.Check.typeOf.number("y", y);
  1127. //>>includeEnd('debug');
  1128. // atan approximations are usually only reliable over [-1, 1]
  1129. // So reduce the range by flipping whether x or y is on top based on which is bigger.
  1130. var opposite;
  1131. var adjacent;
  1132. var t = Math.abs(x); // t used as swap and atan result.
  1133. opposite = Math.abs(y);
  1134. adjacent = Math.max(t, opposite);
  1135. opposite = Math.min(t, opposite);
  1136. var oppositeOverAdjacent = opposite / adjacent;
  1137. //>>includeStart('debug', pragmas.debug);
  1138. if (isNaN(oppositeOverAdjacent)) {
  1139. throw new Check.DeveloperError("either x or y must be nonzero");
  1140. }
  1141. //>>includeEnd('debug');
  1142. t = CesiumMath.fastApproximateAtan(oppositeOverAdjacent);
  1143. // Undo range reduction
  1144. t = Math.abs(y) > Math.abs(x) ? CesiumMath.PI_OVER_TWO - t : t;
  1145. t = x < 0.0 ? CesiumMath.PI - t : t;
  1146. t = y < 0.0 ? -t : t;
  1147. return t;
  1148. };
  1149. exports.CesiumMath = CesiumMath;
  1150. });
  1151. //# sourceMappingURL=Math-1124a290.js.map