BoundingSphere.html 131 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>BoundingSphere - Cesium Documentation</title>
  8. <!--[if lt IE 9]>
  9. <script src="javascript/html5.js"></script>
  10. <![endif]-->
  11. <link href="styles/jsdoc-default.css" rel="stylesheet">
  12. <link href="styles/prism.css" rel="stylesheet">
  13. </head>
  14. <body>
  15. <div id="main">
  16. <h1 class="page-title">
  17. <a href="index.html"><img src="images/CesiumLogo.png" class="cesiumLogo"></a>
  18. BoundingSphere
  19. <div class="titleCenterer"></div>
  20. </h1>
  21. <section>
  22. <header>
  23. </header>
  24. <article>
  25. <div class="container-overview">
  26. <dt>
  27. <div class="nameContainer">
  28. <h4 class="name" id="BoundingSphere">
  29. <a href="#BoundingSphere" class="doc-link"></a>
  30. new Cesium.BoundingSphere<span class="signature">(<span class="optional">center</span>, <span class="optional">radius</span>)</span>
  31. <div class="source-link rightLinks">
  32. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L42">Core/BoundingSphere.js 42</a>
  33. </div>
  34. </h4>
  35. </div>
  36. </dt>
  37. <dd>
  38. <div class="description">
  39. A bounding sphere with a center and a radius.
  40. </div>
  41. <table class="params">
  42. <thead>
  43. <tr>
  44. <th>Name</th>
  45. <th>Type</th>
  46. <th>Default</th>
  47. <th class="last">Description</th>
  48. </tr>
  49. </thead>
  50. <tbody>
  51. <tr>
  52. <td class="name"><code>center</code></td>
  53. <td class="type">
  54. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  55. </td>
  56. <td class="default">
  57. <code class="language-javascript">Cartesian3.ZERO</code>
  58. </td>
  59. <td class="description last">
  60. <span class="optional">optional</span>
  61. The center of the bounding sphere.</td>
  62. </tr>
  63. <tr>
  64. <td class="name"><code>radius</code></td>
  65. <td class="type">
  66. <span class="param-type">Number</span>
  67. </td>
  68. <td class="default">
  69. <code class="language-javascript">0.0</code>
  70. </td>
  71. <td class="description last">
  72. <span class="optional">optional</span>
  73. The radius of the bounding sphere.</td>
  74. </tr>
  75. </tbody>
  76. </table>
  77. <dl class="details">
  78. <h5>See:</h5>
  79. <ul class="see-list">
  80. <li><a href="AxisAlignedBoundingBox.html">AxisAlignedBoundingBox</a></li>
  81. <li><a href="BoundingRectangle.html">BoundingRectangle</a></li>
  82. <li><a href="Packable.html">Packable</a></li>
  83. </ul>
  84. </dl>
  85. </dd>
  86. </div>
  87. <h3 class="subsection-title">Members</h3>
  88. <dl>
  89. <dt>
  90. <div class="nameContainer">
  91. <h4 class="name" id=".packedLength">
  92. <a href="#.packedLength" class="doc-link"></a>
  93. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.packedLength<span class="type-signature"> : Number</span>
  94. <div class="source-link rightLinks">
  95. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L804">Core/BoundingSphere.js 804</a>
  96. </div>
  97. </h4>
  98. </div>
  99. </dt>
  100. <dd>
  101. <div class="description">
  102. The number of elements used to pack the object into an array.
  103. </div>
  104. <dl class="details">
  105. </dl>
  106. </dd>
  107. <dt>
  108. <div class="nameContainer">
  109. <h4 class="name" id="center">
  110. <a href="#center" class="doc-link"></a>
  111. center<span class="type-signature"> : <a href="Cartesian3.html">Cartesian3</a></span>
  112. <div class="source-link rightLinks">
  113. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L48">Core/BoundingSphere.js 48</a>
  114. </div>
  115. </h4>
  116. </div>
  117. </dt>
  118. <dd>
  119. <div class="description">
  120. The center point of the sphere.
  121. </div>
  122. <dl class="details">
  123. <span class="details-header">Default Value:</span>
  124. <code class="language-javascript"><a href="Cartesian3.html#.ZERO"><code>Cartesian3.ZERO</code></a></code>
  125. </dl>
  126. </dd>
  127. <dt>
  128. <div class="nameContainer">
  129. <h4 class="name" id="radius">
  130. <a href="#radius" class="doc-link"></a>
  131. radius<span class="type-signature"> : Number</span>
  132. <div class="source-link rightLinks">
  133. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L55">Core/BoundingSphere.js 55</a>
  134. </div>
  135. </h4>
  136. </div>
  137. </dt>
  138. <dd>
  139. <div class="description">
  140. The radius of the sphere.
  141. </div>
  142. <dl class="details">
  143. <span class="details-header">Default Value:</span>
  144. <code class="language-javascript">0.0</code>
  145. </dl>
  146. </dd>
  147. </dl>
  148. <h3 class="subsection-title">Methods</h3>
  149. <dl>
  150. <dt>
  151. <div class="nameContainer">
  152. <h4 class="name" id=".clone">
  153. <a href="#.clone" class="doc-link"></a>
  154. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.clone<span class="signature">(sphere, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  155. <div class="source-link rightLinks">
  156. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L786">Core/BoundingSphere.js 786</a>
  157. </div>
  158. </h4>
  159. </div>
  160. </dt>
  161. <dd>
  162. <div class="description">
  163. Duplicates a BoundingSphere instance.
  164. </div>
  165. <table class="params">
  166. <thead>
  167. <tr>
  168. <th>Name</th>
  169. <th>Type</th>
  170. <th class="last">Description</th>
  171. </tr>
  172. </thead>
  173. <tbody>
  174. <tr>
  175. <td class="name"><code>sphere</code></td>
  176. <td class="type">
  177. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  178. </td>
  179. <td class="description last">
  180. The bounding sphere to duplicate.</td>
  181. </tr>
  182. <tr>
  183. <td class="name"><code>result</code></td>
  184. <td class="type">
  185. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  186. </td>
  187. <td class="description last">
  188. <span class="optional">optional</span>
  189. The object onto which to store the result.</td>
  190. </tr>
  191. </tbody>
  192. </table>
  193. <h5>Returns:</h5>
  194. <div class="param-desc">
  195. The modified result parameter or a new BoundingSphere instance if none was provided. (Returns undefined if sphere is undefined)
  196. </div>
  197. <dl class="details">
  198. </dl>
  199. </dd>
  200. <dt>
  201. <div class="nameContainer">
  202. <h4 class="name" id=".computePlaneDistances">
  203. <a href="#.computePlaneDistances" class="doc-link"></a>
  204. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.computePlaneDistances<span class="signature">(sphere, position, direction, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="Interval.html">Interval</a></span>
  205. <div class="source-link rightLinks">
  206. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1098">Core/BoundingSphere.js 1098</a>
  207. </div>
  208. </h4>
  209. </div>
  210. </dt>
  211. <dd>
  212. <div class="description">
  213. The distances calculated by the vector from the center of the bounding sphere to position projected onto direction plus/minus the radius of the bounding sphere. <br> If you imagine the infinite number of planes with normal direction, this computes the smallest distance to the closest and farthest planes from position that intersect the bounding sphere.
  214. </div>
  215. <table class="params">
  216. <thead>
  217. <tr>
  218. <th>Name</th>
  219. <th>Type</th>
  220. <th class="last">Description</th>
  221. </tr>
  222. </thead>
  223. <tbody>
  224. <tr>
  225. <td class="name"><code>sphere</code></td>
  226. <td class="type">
  227. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  228. </td>
  229. <td class="description last">
  230. The bounding sphere to calculate the distance to.</td>
  231. </tr>
  232. <tr>
  233. <td class="name"><code>position</code></td>
  234. <td class="type">
  235. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  236. </td>
  237. <td class="description last">
  238. The position to calculate the distance from.</td>
  239. </tr>
  240. <tr>
  241. <td class="name"><code>direction</code></td>
  242. <td class="type">
  243. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  244. </td>
  245. <td class="description last">
  246. The direction from position.</td>
  247. </tr>
  248. <tr>
  249. <td class="name"><code>result</code></td>
  250. <td class="type">
  251. <span class="param-type"><a href="Interval.html">Interval</a></span>
  252. </td>
  253. <td class="description last">
  254. <span class="optional">optional</span>
  255. A Interval to store the nearest and farthest distances.</td>
  256. </tr>
  257. </tbody>
  258. </table>
  259. <h5>Returns:</h5>
  260. <div class="param-desc">
  261. The nearest and farthest distances on the bounding sphere from position in direction.
  262. </div>
  263. <dl class="details">
  264. </dl>
  265. </dd>
  266. <dt>
  267. <div class="nameContainer">
  268. <h4 class="name" id=".distanceSquaredTo">
  269. <a href="#.distanceSquaredTo" class="doc-link"></a>
  270. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.distanceSquaredTo<span class="signature">(sphere, cartesian)</span> &rarr; <span class="type-signature returnType">Number</span>
  271. <div class="source-link rightLinks">
  272. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1034">Core/BoundingSphere.js 1034</a>
  273. </div>
  274. </h4>
  275. </div>
  276. </dt>
  277. <dd>
  278. <div class="description">
  279. Computes the estimated distance squared from the closest point on a bounding sphere to a point.
  280. </div>
  281. <table class="params">
  282. <thead>
  283. <tr>
  284. <th>Name</th>
  285. <th>Type</th>
  286. <th class="last">Description</th>
  287. </tr>
  288. </thead>
  289. <tbody>
  290. <tr>
  291. <td class="name"><code>sphere</code></td>
  292. <td class="type">
  293. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  294. </td>
  295. <td class="description last">
  296. The sphere.</td>
  297. </tr>
  298. <tr>
  299. <td class="name"><code>cartesian</code></td>
  300. <td class="type">
  301. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  302. </td>
  303. <td class="description last">
  304. The point</td>
  305. </tr>
  306. </tbody>
  307. </table>
  308. <h5>Returns:</h5>
  309. <div class="param-desc">
  310. The estimated distance squared from the bounding sphere to the point.
  311. </div>
  312. <dl class="details">
  313. <h5>Example:</h5>
  314. <pre><code class="language-javascript">// Sort bounding spheres from back to front spheres.sort(function(a, b) { return Cesium.BoundingSphere.distanceSquaredTo(b, camera.positionWC) - Cesium.BoundingSphere.distanceSquaredTo(a, camera.positionWC); });</code></pre>
  315. </dl>
  316. </dd>
  317. <dt>
  318. <div class="nameContainer">
  319. <h4 class="name" id=".equals">
  320. <a href="#.equals" class="doc-link"></a>
  321. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.equals<span class="signature">(<span class="optional">left</span>, <span class="optional">right</span>)</span> &rarr; <span class="type-signature returnType">Boolean</span>
  322. <div class="source-link rightLinks">
  323. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1264">Core/BoundingSphere.js 1264</a>
  324. </div>
  325. </h4>
  326. </div>
  327. </dt>
  328. <dd>
  329. <div class="description">
  330. Compares the provided BoundingSphere componentwise and returns <code>true</code> if they are equal, <code>false</code> otherwise.
  331. </div>
  332. <table class="params">
  333. <thead>
  334. <tr>
  335. <th>Name</th>
  336. <th>Type</th>
  337. <th class="last">Description</th>
  338. </tr>
  339. </thead>
  340. <tbody>
  341. <tr>
  342. <td class="name"><code>left</code></td>
  343. <td class="type">
  344. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  345. </td>
  346. <td class="description last">
  347. <span class="optional">optional</span>
  348. The first BoundingSphere.</td>
  349. </tr>
  350. <tr>
  351. <td class="name"><code>right</code></td>
  352. <td class="type">
  353. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  354. </td>
  355. <td class="description last">
  356. <span class="optional">optional</span>
  357. The second BoundingSphere.</td>
  358. </tr>
  359. </tbody>
  360. </table>
  361. <h5>Returns:</h5>
  362. <div class="param-desc">
  363. <code>true</code> if left and right are equal, <code>false</code> otherwise.
  364. </div>
  365. <dl class="details">
  366. </dl>
  367. </dd>
  368. <dt>
  369. <div class="nameContainer">
  370. <h4 class="name" id=".expand">
  371. <a href="#.expand" class="doc-link"></a>
  372. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.expand<span class="signature">(sphere, point, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  373. <div class="source-link rightLinks">
  374. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L933">Core/BoundingSphere.js 933</a>
  375. </div>
  376. </h4>
  377. </div>
  378. </dt>
  379. <dd>
  380. <div class="description">
  381. Computes a bounding sphere by enlarging the provided sphere to contain the provided point.
  382. </div>
  383. <table class="params">
  384. <thead>
  385. <tr>
  386. <th>Name</th>
  387. <th>Type</th>
  388. <th class="last">Description</th>
  389. </tr>
  390. </thead>
  391. <tbody>
  392. <tr>
  393. <td class="name"><code>sphere</code></td>
  394. <td class="type">
  395. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  396. </td>
  397. <td class="description last">
  398. A sphere to expand.</td>
  399. </tr>
  400. <tr>
  401. <td class="name"><code>point</code></td>
  402. <td class="type">
  403. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  404. </td>
  405. <td class="description last">
  406. A point to enclose in a bounding sphere.</td>
  407. </tr>
  408. <tr>
  409. <td class="name"><code>result</code></td>
  410. <td class="type">
  411. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  412. </td>
  413. <td class="description last">
  414. <span class="optional">optional</span>
  415. The object onto which to store the result.</td>
  416. </tr>
  417. </tbody>
  418. </table>
  419. <h5>Returns:</h5>
  420. <div class="param-desc">
  421. The modified result parameter or a new BoundingSphere instance if none was provided.
  422. </div>
  423. <dl class="details">
  424. </dl>
  425. </dd>
  426. <dt>
  427. <div class="nameContainer">
  428. <h4 class="name" id=".fromBoundingSpheres">
  429. <a href="#.fromBoundingSpheres" class="doc-link"></a>
  430. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromBoundingSpheres<span class="signature">(boundingSpheres, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  431. <div class="source-link rightLinks">
  432. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L710">Core/BoundingSphere.js 710</a>
  433. </div>
  434. </h4>
  435. </div>
  436. </dt>
  437. <dd>
  438. <div class="description">
  439. Computes a tight-fitting bounding sphere enclosing the provided array of bounding spheres.
  440. </div>
  441. <table class="params">
  442. <thead>
  443. <tr>
  444. <th>Name</th>
  445. <th>Type</th>
  446. <th class="last">Description</th>
  447. </tr>
  448. </thead>
  449. <tbody>
  450. <tr>
  451. <td class="name"><code>boundingSpheres</code></td>
  452. <td class="type">
  453. <span class="param-type">Array.&lt;<a href="BoundingSphere.html">BoundingSphere</a>></span>
  454. </td>
  455. <td class="description last">
  456. The array of bounding spheres.</td>
  457. </tr>
  458. <tr>
  459. <td class="name"><code>result</code></td>
  460. <td class="type">
  461. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  462. </td>
  463. <td class="description last">
  464. <span class="optional">optional</span>
  465. The object onto which to store the result.</td>
  466. </tr>
  467. </tbody>
  468. </table>
  469. <h5>Returns:</h5>
  470. <div class="param-desc">
  471. The modified result parameter or a new BoundingSphere instance if none was provided.
  472. </div>
  473. <dl class="details">
  474. </dl>
  475. </dd>
  476. <dt>
  477. <div class="nameContainer">
  478. <h4 class="name" id=".fromCornerPoints">
  479. <a href="#.fromCornerPoints" class="doc-link"></a>
  480. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromCornerPoints<span class="signature">(<span class="optional">corner</span>, <span class="optional">oppositeCorner</span>, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  481. <div class="source-link rightLinks">
  482. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L657">Core/BoundingSphere.js 657</a>
  483. </div>
  484. </h4>
  485. </div>
  486. </dt>
  487. <dd>
  488. <div class="description">
  489. Computes a bounding sphere from the corner points of an axis-aligned bounding box. The sphere tighly and fully encompases the box.
  490. </div>
  491. <table class="params">
  492. <thead>
  493. <tr>
  494. <th>Name</th>
  495. <th>Type</th>
  496. <th class="last">Description</th>
  497. </tr>
  498. </thead>
  499. <tbody>
  500. <tr>
  501. <td class="name"><code>corner</code></td>
  502. <td class="type">
  503. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  504. </td>
  505. <td class="description last">
  506. <span class="optional">optional</span>
  507. The minimum height over the rectangle.</td>
  508. </tr>
  509. <tr>
  510. <td class="name"><code>oppositeCorner</code></td>
  511. <td class="type">
  512. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  513. </td>
  514. <td class="description last">
  515. <span class="optional">optional</span>
  516. The maximum height over the rectangle.</td>
  517. </tr>
  518. <tr>
  519. <td class="name"><code>result</code></td>
  520. <td class="type">
  521. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  522. </td>
  523. <td class="description last">
  524. <span class="optional">optional</span>
  525. The object onto which to store the result.</td>
  526. </tr>
  527. </tbody>
  528. </table>
  529. <h5>Returns:</h5>
  530. <div class="param-desc">
  531. The modified result parameter or a new BoundingSphere instance if none was provided.
  532. </div>
  533. <dl class="details">
  534. <h5>Example:</h5>
  535. <pre><code class="language-javascript">// Create a bounding sphere around the unit cube var sphere = Cesium.BoundingSphere.fromCornerPoints(new Cesium.Cartesian3(-0.5, -0.5, -0.5), new Cesium.Cartesian3(0.5, 0.5, 0.5));</code></pre>
  536. </dl>
  537. </dd>
  538. <dt>
  539. <div class="nameContainer">
  540. <h4 class="name" id=".fromEllipsoid">
  541. <a href="#.fromEllipsoid" class="doc-link"></a>
  542. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromEllipsoid<span class="signature">(ellipsoid, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  543. <div class="source-link rightLinks">
  544. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L685">Core/BoundingSphere.js 685</a>
  545. </div>
  546. </h4>
  547. </div>
  548. </dt>
  549. <dd>
  550. <div class="description">
  551. Creates a bounding sphere encompassing an ellipsoid.
  552. </div>
  553. <table class="params">
  554. <thead>
  555. <tr>
  556. <th>Name</th>
  557. <th>Type</th>
  558. <th class="last">Description</th>
  559. </tr>
  560. </thead>
  561. <tbody>
  562. <tr>
  563. <td class="name"><code>ellipsoid</code></td>
  564. <td class="type">
  565. <span class="param-type"><a href="Ellipsoid.html">Ellipsoid</a></span>
  566. </td>
  567. <td class="description last">
  568. The ellipsoid around which to create a bounding sphere.</td>
  569. </tr>
  570. <tr>
  571. <td class="name"><code>result</code></td>
  572. <td class="type">
  573. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  574. </td>
  575. <td class="description last">
  576. <span class="optional">optional</span>
  577. The object onto which to store the result.</td>
  578. </tr>
  579. </tbody>
  580. </table>
  581. <h5>Returns:</h5>
  582. <div class="param-desc">
  583. The modified result parameter or a new BoundingSphere instance if none was provided.
  584. </div>
  585. <dl class="details">
  586. <h5>Example:</h5>
  587. <pre><code class="language-javascript">var boundingSphere = Cesium.BoundingSphere.fromEllipsoid(ellipsoid);</code></pre>
  588. </dl>
  589. </dd>
  590. <dt>
  591. <div class="nameContainer">
  592. <h4 class="name" id=".fromEncodedCartesianVertices">
  593. <a href="#.fromEncodedCartesianVertices" class="doc-link"></a>
  594. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromEncodedCartesianVertices<span class="signature">(positionsHigh, positionsLow, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  595. <div class="source-link rightLinks">
  596. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L502">Core/BoundingSphere.js 502</a>
  597. </div>
  598. </h4>
  599. </div>
  600. </dt>
  601. <dd>
  602. <div class="description">
  603. Computes a tight-fitting bounding sphere enclosing a list of <a href="EncodedCartesian3.html"><code>EncodedCartesian3</code></a>s, where the points are stored in parallel flat arrays in X, Y, Z, order. The bounding sphere is computed by running two algorithms, a naive algorithm and Ritter's algorithm. The smaller of the two spheres is used to ensure a tight fit.
  604. </div>
  605. <table class="params">
  606. <thead>
  607. <tr>
  608. <th>Name</th>
  609. <th>Type</th>
  610. <th class="last">Description</th>
  611. </tr>
  612. </thead>
  613. <tbody>
  614. <tr>
  615. <td class="name"><code>positionsHigh</code></td>
  616. <td class="type">
  617. <span class="param-type">Array.&lt;Number></span>
  618. </td>
  619. <td class="description last">
  620. An array of high bits of the encoded cartesians that the bounding sphere will enclose. Each point is formed from three elements in the array in the order X, Y, Z.</td>
  621. </tr>
  622. <tr>
  623. <td class="name"><code>positionsLow</code></td>
  624. <td class="type">
  625. <span class="param-type">Array.&lt;Number></span>
  626. </td>
  627. <td class="description last">
  628. An array of low bits of the encoded cartesians that the bounding sphere will enclose. Each point is formed from three elements in the array in the order X, Y, Z.</td>
  629. </tr>
  630. <tr>
  631. <td class="name"><code>result</code></td>
  632. <td class="type">
  633. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  634. </td>
  635. <td class="description last">
  636. <span class="optional">optional</span>
  637. The object onto which to store the result.</td>
  638. </tr>
  639. </tbody>
  640. </table>
  641. <h5>Returns:</h5>
  642. <div class="param-desc">
  643. The modified result parameter or a new BoundingSphere instance if one was not provided.
  644. </div>
  645. <dl class="details">
  646. <h5>See:</h5>
  647. <ul class="see-list">
  648. <li><a href="http://blogs.agi.com/insight3d/index.php/2008/02/04/a-bounding/">Bounding Sphere computation article</a></li>
  649. </ul>
  650. </dl>
  651. </dd>
  652. <dt>
  653. <div class="nameContainer">
  654. <h4 class="name" id=".fromOrientedBoundingBox">
  655. <a href="#.fromOrientedBoundingBox" class="doc-link"></a>
  656. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromOrientedBoundingBox<span class="signature">(orientedBoundingBox, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  657. <div class="source-link rightLinks">
  658. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L759">Core/BoundingSphere.js 759</a>
  659. </div>
  660. </h4>
  661. </div>
  662. </dt>
  663. <dd>
  664. <div class="description">
  665. Computes a tight-fitting bounding sphere enclosing the provided oriented bounding box.
  666. </div>
  667. <table class="params">
  668. <thead>
  669. <tr>
  670. <th>Name</th>
  671. <th>Type</th>
  672. <th class="last">Description</th>
  673. </tr>
  674. </thead>
  675. <tbody>
  676. <tr>
  677. <td class="name"><code>orientedBoundingBox</code></td>
  678. <td class="type">
  679. <span class="param-type"><a href="OrientedBoundingBox.html">OrientedBoundingBox</a></span>
  680. </td>
  681. <td class="description last">
  682. The oriented bounding box.</td>
  683. </tr>
  684. <tr>
  685. <td class="name"><code>result</code></td>
  686. <td class="type">
  687. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  688. </td>
  689. <td class="description last">
  690. <span class="optional">optional</span>
  691. The object onto which to store the result.</td>
  692. </tr>
  693. </tbody>
  694. </table>
  695. <h5>Returns:</h5>
  696. <div class="param-desc">
  697. The modified result parameter or a new BoundingSphere instance if none was provided.
  698. </div>
  699. <dl class="details">
  700. </dl>
  701. </dd>
  702. <dt>
  703. <div class="nameContainer">
  704. <h4 class="name" id=".fromPoints">
  705. <a href="#.fromPoints" class="doc-link"></a>
  706. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromPoints<span class="signature">(positions, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  707. <div class="source-link rightLinks">
  708. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L82">Core/BoundingSphere.js 82</a>
  709. </div>
  710. </h4>
  711. </div>
  712. </dt>
  713. <dd>
  714. <div class="description">
  715. Computes a tight-fitting bounding sphere enclosing a list of 3D Cartesian points. The bounding sphere is computed by running two algorithms, a naive algorithm and Ritter's algorithm. The smaller of the two spheres is used to ensure a tight fit.
  716. </div>
  717. <table class="params">
  718. <thead>
  719. <tr>
  720. <th>Name</th>
  721. <th>Type</th>
  722. <th class="last">Description</th>
  723. </tr>
  724. </thead>
  725. <tbody>
  726. <tr>
  727. <td class="name"><code>positions</code></td>
  728. <td class="type">
  729. <span class="param-type">Array.&lt;<a href="Cartesian3.html">Cartesian3</a>></span>
  730. </td>
  731. <td class="description last">
  732. An array of points that the bounding sphere will enclose. Each point must have <code>x</code>, <code>y</code>, and <code>z</code> properties.</td>
  733. </tr>
  734. <tr>
  735. <td class="name"><code>result</code></td>
  736. <td class="type">
  737. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  738. </td>
  739. <td class="description last">
  740. <span class="optional">optional</span>
  741. The object onto which to store the result.</td>
  742. </tr>
  743. </tbody>
  744. </table>
  745. <h5>Returns:</h5>
  746. <div class="param-desc">
  747. The modified result parameter or a new BoundingSphere instance if one was not provided.
  748. </div>
  749. <dl class="details">
  750. <h5>See:</h5>
  751. <ul class="see-list">
  752. <li><a href="http://blogs.agi.com/insight3d/index.php/2008/02/04/a-bounding/">Bounding Sphere computation article</a></li>
  753. </ul>
  754. </dl>
  755. </dd>
  756. <dt>
  757. <div class="nameContainer">
  758. <h4 class="name" id=".fromRectangle2D">
  759. <a href="#.fromRectangle2D" class="doc-link"></a>
  760. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromRectangle2D<span class="signature">(rectangle, <span class="optional">projection</span>, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  761. <div class="source-link rightLinks">
  762. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L231">Core/BoundingSphere.js 231</a>
  763. </div>
  764. </h4>
  765. </div>
  766. </dt>
  767. <dd>
  768. <div class="description">
  769. Computes a bounding sphere from an rectangle projected in 2D.
  770. </div>
  771. <table class="params">
  772. <thead>
  773. <tr>
  774. <th>Name</th>
  775. <th>Type</th>
  776. <th>Default</th>
  777. <th class="last">Description</th>
  778. </tr>
  779. </thead>
  780. <tbody>
  781. <tr>
  782. <td class="name"><code>rectangle</code></td>
  783. <td class="type">
  784. <span class="param-type"><a href="Rectangle.html">Rectangle</a></span>
  785. </td>
  786. <td class="default">
  787. </td>
  788. <td class="description last">
  789. The rectangle around which to create a bounding sphere.</td>
  790. </tr>
  791. <tr>
  792. <td class="name"><code>projection</code></td>
  793. <td class="type">
  794. <span class="param-type">Object</span>
  795. </td>
  796. <td class="default">
  797. <code class="language-javascript">GeographicProjection</code>
  798. </td>
  799. <td class="description last">
  800. <span class="optional">optional</span>
  801. The projection used to project the rectangle into 2D.</td>
  802. </tr>
  803. <tr>
  804. <td class="name"><code>result</code></td>
  805. <td class="type">
  806. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  807. </td>
  808. <td class="default">
  809. </td>
  810. <td class="description last">
  811. <span class="optional">optional</span>
  812. The object onto which to store the result.</td>
  813. </tr>
  814. </tbody>
  815. </table>
  816. <h5>Returns:</h5>
  817. <div class="param-desc">
  818. The modified result parameter or a new BoundingSphere instance if none was provided.
  819. </div>
  820. <dl class="details">
  821. </dl>
  822. </dd>
  823. <dt>
  824. <div class="nameContainer">
  825. <h4 class="name" id=".fromRectangle3D">
  826. <a href="#.fromRectangle3D" class="doc-link"></a>
  827. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromRectangle3D<span class="signature">(rectangle, <span class="optional">ellipsoid</span>, <span class="optional">surfaceHeight</span>, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  828. <div class="source-link rightLinks">
  829. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L291">Core/BoundingSphere.js 291</a>
  830. </div>
  831. </h4>
  832. </div>
  833. </dt>
  834. <dd>
  835. <div class="description">
  836. Computes a bounding sphere from an rectangle in 3D. The bounding sphere is created using a subsample of points on the ellipsoid and contained in the rectangle. It may not be accurate for all rectangles on all types of ellipsoids.
  837. </div>
  838. <table class="params">
  839. <thead>
  840. <tr>
  841. <th>Name</th>
  842. <th>Type</th>
  843. <th>Default</th>
  844. <th class="last">Description</th>
  845. </tr>
  846. </thead>
  847. <tbody>
  848. <tr>
  849. <td class="name"><code>rectangle</code></td>
  850. <td class="type">
  851. <span class="param-type"><a href="Rectangle.html">Rectangle</a></span>
  852. </td>
  853. <td class="default">
  854. </td>
  855. <td class="description last">
  856. The valid rectangle used to create a bounding sphere.</td>
  857. </tr>
  858. <tr>
  859. <td class="name"><code>ellipsoid</code></td>
  860. <td class="type">
  861. <span class="param-type"><a href="Ellipsoid.html">Ellipsoid</a></span>
  862. </td>
  863. <td class="default">
  864. <code class="language-javascript">Ellipsoid.WGS84</code>
  865. </td>
  866. <td class="description last">
  867. <span class="optional">optional</span>
  868. The ellipsoid used to determine positions of the rectangle.</td>
  869. </tr>
  870. <tr>
  871. <td class="name"><code>surfaceHeight</code></td>
  872. <td class="type">
  873. <span class="param-type">Number</span>
  874. </td>
  875. <td class="default">
  876. <code class="language-javascript">0.0</code>
  877. </td>
  878. <td class="description last">
  879. <span class="optional">optional</span>
  880. The height above the surface of the ellipsoid.</td>
  881. </tr>
  882. <tr>
  883. <td class="name"><code>result</code></td>
  884. <td class="type">
  885. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  886. </td>
  887. <td class="default">
  888. </td>
  889. <td class="description last">
  890. <span class="optional">optional</span>
  891. The object onto which to store the result.</td>
  892. </tr>
  893. </tbody>
  894. </table>
  895. <h5>Returns:</h5>
  896. <div class="param-desc">
  897. The modified result parameter or a new BoundingSphere instance if none was provided.
  898. </div>
  899. <dl class="details">
  900. </dl>
  901. </dd>
  902. <dt>
  903. <div class="nameContainer">
  904. <h4 class="name" id=".fromRectangleWithHeights2D">
  905. <a href="#.fromRectangleWithHeights2D" class="doc-link"></a>
  906. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromRectangleWithHeights2D<span class="signature">(rectangle, <span class="optional">projection</span>, <span class="optional">minimumHeight</span>, <span class="optional">maximumHeight</span>, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  907. <div class="source-link rightLinks">
  908. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L246">Core/BoundingSphere.js 246</a>
  909. </div>
  910. </h4>
  911. </div>
  912. </dt>
  913. <dd>
  914. <div class="description">
  915. Computes a bounding sphere from an rectangle projected in 2D. The bounding sphere accounts for the object's minimum and maximum heights over the rectangle.
  916. </div>
  917. <table class="params">
  918. <thead>
  919. <tr>
  920. <th>Name</th>
  921. <th>Type</th>
  922. <th>Default</th>
  923. <th class="last">Description</th>
  924. </tr>
  925. </thead>
  926. <tbody>
  927. <tr>
  928. <td class="name"><code>rectangle</code></td>
  929. <td class="type">
  930. <span class="param-type"><a href="Rectangle.html">Rectangle</a></span>
  931. </td>
  932. <td class="default">
  933. </td>
  934. <td class="description last">
  935. The rectangle around which to create a bounding sphere.</td>
  936. </tr>
  937. <tr>
  938. <td class="name"><code>projection</code></td>
  939. <td class="type">
  940. <span class="param-type">Object</span>
  941. </td>
  942. <td class="default">
  943. <code class="language-javascript">GeographicProjection</code>
  944. </td>
  945. <td class="description last">
  946. <span class="optional">optional</span>
  947. The projection used to project the rectangle into 2D.</td>
  948. </tr>
  949. <tr>
  950. <td class="name"><code>minimumHeight</code></td>
  951. <td class="type">
  952. <span class="param-type">Number</span>
  953. </td>
  954. <td class="default">
  955. <code class="language-javascript">0.0</code>
  956. </td>
  957. <td class="description last">
  958. <span class="optional">optional</span>
  959. The minimum height over the rectangle.</td>
  960. </tr>
  961. <tr>
  962. <td class="name"><code>maximumHeight</code></td>
  963. <td class="type">
  964. <span class="param-type">Number</span>
  965. </td>
  966. <td class="default">
  967. <code class="language-javascript">0.0</code>
  968. </td>
  969. <td class="description last">
  970. <span class="optional">optional</span>
  971. The maximum height over the rectangle.</td>
  972. </tr>
  973. <tr>
  974. <td class="name"><code>result</code></td>
  975. <td class="type">
  976. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  977. </td>
  978. <td class="default">
  979. </td>
  980. <td class="description last">
  981. <span class="optional">optional</span>
  982. The object onto which to store the result.</td>
  983. </tr>
  984. </tbody>
  985. </table>
  986. <h5>Returns:</h5>
  987. <div class="param-desc">
  988. The modified result parameter or a new BoundingSphere instance if none was provided.
  989. </div>
  990. <dl class="details">
  991. </dl>
  992. </dd>
  993. <dt>
  994. <div class="nameContainer">
  995. <h4 class="name" id=".fromVertices">
  996. <a href="#.fromVertices" class="doc-link"></a>
  997. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.fromVertices<span class="signature">(positions, <span class="optional">center</span>, <span class="optional">stride</span>, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  998. <div class="source-link rightLinks">
  999. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L335">Core/BoundingSphere.js 335</a>
  1000. </div>
  1001. </h4>
  1002. </div>
  1003. </dt>
  1004. <dd>
  1005. <div class="description">
  1006. Computes a tight-fitting bounding sphere enclosing a list of 3D points, where the points are stored in a flat array in X, Y, Z, order. The bounding sphere is computed by running two algorithms, a naive algorithm and Ritter's algorithm. The smaller of the two spheres is used to ensure a tight fit.
  1007. </div>
  1008. <table class="params">
  1009. <thead>
  1010. <tr>
  1011. <th>Name</th>
  1012. <th>Type</th>
  1013. <th>Default</th>
  1014. <th class="last">Description</th>
  1015. </tr>
  1016. </thead>
  1017. <tbody>
  1018. <tr>
  1019. <td class="name"><code>positions</code></td>
  1020. <td class="type">
  1021. <span class="param-type">Array.&lt;Number></span>
  1022. </td>
  1023. <td class="default">
  1024. </td>
  1025. <td class="description last">
  1026. An array of points that the bounding sphere will enclose. Each point is formed from three elements in the array in the order X, Y, Z.</td>
  1027. </tr>
  1028. <tr>
  1029. <td class="name"><code>center</code></td>
  1030. <td class="type">
  1031. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  1032. </td>
  1033. <td class="default">
  1034. <code class="language-javascript">Cartesian3.ZERO</code>
  1035. </td>
  1036. <td class="description last">
  1037. <span class="optional">optional</span>
  1038. The position to which the positions are relative, which need not be the origin of the coordinate system. This is useful when the positions are to be used for relative-to-center (RTC) rendering.</td>
  1039. </tr>
  1040. <tr>
  1041. <td class="name"><code>stride</code></td>
  1042. <td class="type">
  1043. <span class="param-type">Number</span>
  1044. </td>
  1045. <td class="default">
  1046. <code class="language-javascript">3</code>
  1047. </td>
  1048. <td class="description last">
  1049. <span class="optional">optional</span>
  1050. The number of array elements per vertex. It must be at least 3, but it may be higher. Regardless of the value of this parameter, the X coordinate of the first position is at array index 0, the Y coordinate is at array index 1, and the Z coordinate is at array index 2. When stride is 3, the X coordinate of the next position then begins at array index 3. If the stride is 5, however, two array elements are skipped and the next position begins at array index 5.</td>
  1051. </tr>
  1052. <tr>
  1053. <td class="name"><code>result</code></td>
  1054. <td class="type">
  1055. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1056. </td>
  1057. <td class="default">
  1058. </td>
  1059. <td class="description last">
  1060. <span class="optional">optional</span>
  1061. The object onto which to store the result.</td>
  1062. </tr>
  1063. </tbody>
  1064. </table>
  1065. <h5>Returns:</h5>
  1066. <div class="param-desc">
  1067. The modified result parameter or a new BoundingSphere instance if one was not provided.
  1068. </div>
  1069. <dl class="details">
  1070. <h5>Example:</h5>
  1071. <pre><code class="language-javascript">// Compute the bounding sphere from 3 positions, each specified relative to a center. // In addition to the X, Y, and Z coordinates, the points array contains two additional // elements per point which are ignored for the purpose of computing the bounding sphere. var center = new Cesium.Cartesian3(1.0, 2.0, 3.0); var points = [1.0, 2.0, 3.0, 0.1, 0.2, 4.0, 5.0, 6.0, 0.1, 0.2, 7.0, 8.0, 9.0, 0.1, 0.2]; var sphere = Cesium.BoundingSphere.fromVertices(points, center, 5);</code></pre>
  1072. <h5>See:</h5>
  1073. <ul class="see-list">
  1074. <li><a href="http://blogs.agi.com/insight3d/index.php/2008/02/04/a-bounding/">Bounding Sphere computation article</a></li>
  1075. </ul>
  1076. </dl>
  1077. </dd>
  1078. <dt>
  1079. <div class="nameContainer">
  1080. <h4 class="name" id=".intersectPlane">
  1081. <a href="#.intersectPlane" class="doc-link"></a>
  1082. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.intersectPlane<span class="signature">(sphere, plane)</span> &rarr; <span class="type-signature returnType"><a href="Intersect.html">Intersect</a></span>
  1083. <div class="source-link rightLinks">
  1084. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L964">Core/BoundingSphere.js 964</a>
  1085. </div>
  1086. </h4>
  1087. </div>
  1088. </dt>
  1089. <dd>
  1090. <div class="description">
  1091. Determines which side of a plane a sphere is located.
  1092. </div>
  1093. <table class="params">
  1094. <thead>
  1095. <tr>
  1096. <th>Name</th>
  1097. <th>Type</th>
  1098. <th class="last">Description</th>
  1099. </tr>
  1100. </thead>
  1101. <tbody>
  1102. <tr>
  1103. <td class="name"><code>sphere</code></td>
  1104. <td class="type">
  1105. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1106. </td>
  1107. <td class="description last">
  1108. The bounding sphere to test.</td>
  1109. </tr>
  1110. <tr>
  1111. <td class="name"><code>plane</code></td>
  1112. <td class="type">
  1113. <span class="param-type"><a href="Plane.html">Plane</a></span>
  1114. </td>
  1115. <td class="description last">
  1116. The plane to test against.</td>
  1117. </tr>
  1118. </tbody>
  1119. </table>
  1120. <h5>Returns:</h5>
  1121. <div class="param-desc">
  1122. <a href="Intersect.html#.INSIDE"><code>Intersect.INSIDE</code></a> if the entire sphere is on the side of the plane the normal is pointing, <a href="Intersect.html#.OUTSIDE"><code>Intersect.OUTSIDE</code></a> if the entire sphere is on the opposite side, and <a href="Intersect.html#.INTERSECTING"><code>Intersect.INTERSECTING</code></a> if the sphere intersects the plane.
  1123. </div>
  1124. <dl class="details">
  1125. </dl>
  1126. </dd>
  1127. <dt>
  1128. <div class="nameContainer">
  1129. <h4 class="name" id=".isOccluded">
  1130. <a href="#.isOccluded" class="doc-link"></a>
  1131. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.isOccluded<span class="signature">(sphere, occluder)</span> &rarr; <span class="type-signature returnType">Boolean</span>
  1132. <div class="source-link rightLinks">
  1133. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1244">Core/BoundingSphere.js 1244</a>
  1134. </div>
  1135. </h4>
  1136. </div>
  1137. </dt>
  1138. <dd>
  1139. <div class="description">
  1140. Determines whether or not a sphere is hidden from view by the occluder.
  1141. </div>
  1142. <table class="params">
  1143. <thead>
  1144. <tr>
  1145. <th>Name</th>
  1146. <th>Type</th>
  1147. <th class="last">Description</th>
  1148. </tr>
  1149. </thead>
  1150. <tbody>
  1151. <tr>
  1152. <td class="name"><code>sphere</code></td>
  1153. <td class="type">
  1154. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1155. </td>
  1156. <td class="description last">
  1157. The bounding sphere surrounding the occludee object.</td>
  1158. </tr>
  1159. <tr>
  1160. <td class="name"><code>occluder</code></td>
  1161. <td class="type">
  1162. <span class="param-type"><a href="Occluder.html">Occluder</a></span>
  1163. </td>
  1164. <td class="description last">
  1165. The occluder.</td>
  1166. </tr>
  1167. </tbody>
  1168. </table>
  1169. <h5>Returns:</h5>
  1170. <div class="param-desc">
  1171. <code>true</code> if the sphere is not visible; otherwise <code>false</code>.
  1172. </div>
  1173. <dl class="details">
  1174. </dl>
  1175. </dd>
  1176. <dt>
  1177. <div class="nameContainer">
  1178. <h4 class="name" id=".pack">
  1179. <a href="#.pack" class="doc-link"></a>
  1180. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.pack<span class="signature">(value, array, <span class="optional">startingIndex</span>)</span> &rarr; <span class="type-signature returnType">Array.&lt;Number></span>
  1181. <div class="source-link rightLinks">
  1182. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L815">Core/BoundingSphere.js 815</a>
  1183. </div>
  1184. </h4>
  1185. </div>
  1186. </dt>
  1187. <dd>
  1188. <div class="description">
  1189. Stores the provided instance into the provided array.
  1190. </div>
  1191. <table class="params">
  1192. <thead>
  1193. <tr>
  1194. <th>Name</th>
  1195. <th>Type</th>
  1196. <th>Default</th>
  1197. <th class="last">Description</th>
  1198. </tr>
  1199. </thead>
  1200. <tbody>
  1201. <tr>
  1202. <td class="name"><code>value</code></td>
  1203. <td class="type">
  1204. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1205. </td>
  1206. <td class="default">
  1207. </td>
  1208. <td class="description last">
  1209. The value to pack.</td>
  1210. </tr>
  1211. <tr>
  1212. <td class="name"><code>array</code></td>
  1213. <td class="type">
  1214. <span class="param-type">Array.&lt;Number></span>
  1215. </td>
  1216. <td class="default">
  1217. </td>
  1218. <td class="description last">
  1219. The array to pack into.</td>
  1220. </tr>
  1221. <tr>
  1222. <td class="name"><code>startingIndex</code></td>
  1223. <td class="type">
  1224. <span class="param-type">Number</span>
  1225. </td>
  1226. <td class="default">
  1227. <code class="language-javascript">0</code>
  1228. </td>
  1229. <td class="description last">
  1230. <span class="optional">optional</span>
  1231. The index into the array at which to start packing the elements.</td>
  1232. </tr>
  1233. </tbody>
  1234. </table>
  1235. <h5>Returns:</h5>
  1236. <div class="param-desc">
  1237. The array that was packed into
  1238. </div>
  1239. <dl class="details">
  1240. </dl>
  1241. </dd>
  1242. <dt>
  1243. <div class="nameContainer">
  1244. <h4 class="name" id=".projectTo2D">
  1245. <a href="#.projectTo2D" class="doc-link"></a>
  1246. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.projectTo2D<span class="signature">(sphere, <span class="optional">projection</span>, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1247. <div class="source-link rightLinks">
  1248. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1145">Core/BoundingSphere.js 1145</a>
  1249. </div>
  1250. </h4>
  1251. </div>
  1252. </dt>
  1253. <dd>
  1254. <div class="description">
  1255. Creates a bounding sphere in 2D from a bounding sphere in 3D world coordinates.
  1256. </div>
  1257. <table class="params">
  1258. <thead>
  1259. <tr>
  1260. <th>Name</th>
  1261. <th>Type</th>
  1262. <th>Default</th>
  1263. <th class="last">Description</th>
  1264. </tr>
  1265. </thead>
  1266. <tbody>
  1267. <tr>
  1268. <td class="name"><code>sphere</code></td>
  1269. <td class="type">
  1270. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1271. </td>
  1272. <td class="default">
  1273. </td>
  1274. <td class="description last">
  1275. The bounding sphere to transform to 2D.</td>
  1276. </tr>
  1277. <tr>
  1278. <td class="name"><code>projection</code></td>
  1279. <td class="type">
  1280. <span class="param-type">Object</span>
  1281. </td>
  1282. <td class="default">
  1283. <code class="language-javascript">GeographicProjection</code>
  1284. </td>
  1285. <td class="description last">
  1286. <span class="optional">optional</span>
  1287. The projection to 2D.</td>
  1288. </tr>
  1289. <tr>
  1290. <td class="name"><code>result</code></td>
  1291. <td class="type">
  1292. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1293. </td>
  1294. <td class="default">
  1295. </td>
  1296. <td class="description last">
  1297. <span class="optional">optional</span>
  1298. The object onto which to store the result.</td>
  1299. </tr>
  1300. </tbody>
  1301. </table>
  1302. <h5>Returns:</h5>
  1303. <div class="param-desc">
  1304. The modified result parameter or a new BoundingSphere instance if none was provided.
  1305. </div>
  1306. <dl class="details">
  1307. </dl>
  1308. </dd>
  1309. <dt>
  1310. <div class="nameContainer">
  1311. <h4 class="name" id=".transform">
  1312. <a href="#.transform" class="doc-link"></a>
  1313. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.transform<span class="signature">(sphere, transform, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1314. <div class="source-link rightLinks">
  1315. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L998">Core/BoundingSphere.js 998</a>
  1316. </div>
  1317. </h4>
  1318. </div>
  1319. </dt>
  1320. <dd>
  1321. <div class="description">
  1322. Applies a 4x4 affine transformation matrix to a bounding sphere.
  1323. </div>
  1324. <table class="params">
  1325. <thead>
  1326. <tr>
  1327. <th>Name</th>
  1328. <th>Type</th>
  1329. <th class="last">Description</th>
  1330. </tr>
  1331. </thead>
  1332. <tbody>
  1333. <tr>
  1334. <td class="name"><code>sphere</code></td>
  1335. <td class="type">
  1336. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1337. </td>
  1338. <td class="description last">
  1339. The bounding sphere to apply the transformation to.</td>
  1340. </tr>
  1341. <tr>
  1342. <td class="name"><code>transform</code></td>
  1343. <td class="type">
  1344. <span class="param-type"><a href="Matrix4.html">Matrix4</a></span>
  1345. </td>
  1346. <td class="description last">
  1347. The transformation matrix to apply to the bounding sphere.</td>
  1348. </tr>
  1349. <tr>
  1350. <td class="name"><code>result</code></td>
  1351. <td class="type">
  1352. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1353. </td>
  1354. <td class="description last">
  1355. <span class="optional">optional</span>
  1356. The object onto which to store the result.</td>
  1357. </tr>
  1358. </tbody>
  1359. </table>
  1360. <h5>Returns:</h5>
  1361. <div class="param-desc">
  1362. The modified result parameter or a new BoundingSphere instance if none was provided.
  1363. </div>
  1364. <dl class="details">
  1365. </dl>
  1366. </dd>
  1367. <dt>
  1368. <div class="nameContainer">
  1369. <h4 class="name" id=".transformWithoutScale">
  1370. <a href="#.transformWithoutScale" class="doc-link"></a>
  1371. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.transformWithoutScale<span class="signature">(sphere, transform, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1372. <div class="source-link rightLinks">
  1373. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1063">Core/BoundingSphere.js 1063</a>
  1374. </div>
  1375. </h4>
  1376. </div>
  1377. </dt>
  1378. <dd>
  1379. <div class="description">
  1380. Applies a 4x4 affine transformation matrix to a bounding sphere where there is no scale The transformation matrix is not verified to have a uniform scale of 1. This method is faster than computing the general bounding sphere transform using <a href="BoundingSphere.html#.transform"><code>BoundingSphere.transform</code></a>.
  1381. </div>
  1382. <table class="params">
  1383. <thead>
  1384. <tr>
  1385. <th>Name</th>
  1386. <th>Type</th>
  1387. <th class="last">Description</th>
  1388. </tr>
  1389. </thead>
  1390. <tbody>
  1391. <tr>
  1392. <td class="name"><code>sphere</code></td>
  1393. <td class="type">
  1394. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1395. </td>
  1396. <td class="description last">
  1397. The bounding sphere to apply the transformation to.</td>
  1398. </tr>
  1399. <tr>
  1400. <td class="name"><code>transform</code></td>
  1401. <td class="type">
  1402. <span class="param-type"><a href="Matrix4.html">Matrix4</a></span>
  1403. </td>
  1404. <td class="description last">
  1405. The transformation matrix to apply to the bounding sphere.</td>
  1406. </tr>
  1407. <tr>
  1408. <td class="name"><code>result</code></td>
  1409. <td class="type">
  1410. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1411. </td>
  1412. <td class="description last">
  1413. <span class="optional">optional</span>
  1414. The object onto which to store the result.</td>
  1415. </tr>
  1416. </tbody>
  1417. </table>
  1418. <h5>Returns:</h5>
  1419. <div class="param-desc">
  1420. The modified result parameter or a new BoundingSphere instance if none was provided.
  1421. </div>
  1422. <dl class="details">
  1423. <h5>Example:</h5>
  1424. <pre><code class="language-javascript">var modelMatrix = Cesium.Transforms.eastNorthUpToFixedFrame(positionOnEllipsoid); var boundingSphere = new Cesium.BoundingSphere(); var newBoundingSphere = Cesium.BoundingSphere.transformWithoutScale(boundingSphere, modelMatrix);</code></pre>
  1425. </dl>
  1426. </dd>
  1427. <dt>
  1428. <div class="nameContainer">
  1429. <h4 class="name" id=".union">
  1430. <a href="#.union" class="doc-link"></a>
  1431. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.union<span class="signature">(left, right, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1432. <div class="source-link rightLinks">
  1433. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L876">Core/BoundingSphere.js 876</a>
  1434. </div>
  1435. </h4>
  1436. </div>
  1437. </dt>
  1438. <dd>
  1439. <div class="description">
  1440. Computes a bounding sphere that contains both the left and right bounding spheres.
  1441. </div>
  1442. <table class="params">
  1443. <thead>
  1444. <tr>
  1445. <th>Name</th>
  1446. <th>Type</th>
  1447. <th class="last">Description</th>
  1448. </tr>
  1449. </thead>
  1450. <tbody>
  1451. <tr>
  1452. <td class="name"><code>left</code></td>
  1453. <td class="type">
  1454. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1455. </td>
  1456. <td class="description last">
  1457. A sphere to enclose in a bounding sphere.</td>
  1458. </tr>
  1459. <tr>
  1460. <td class="name"><code>right</code></td>
  1461. <td class="type">
  1462. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1463. </td>
  1464. <td class="description last">
  1465. A sphere to enclose in a bounding sphere.</td>
  1466. </tr>
  1467. <tr>
  1468. <td class="name"><code>result</code></td>
  1469. <td class="type">
  1470. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1471. </td>
  1472. <td class="description last">
  1473. <span class="optional">optional</span>
  1474. The object onto which to store the result.</td>
  1475. </tr>
  1476. </tbody>
  1477. </table>
  1478. <h5>Returns:</h5>
  1479. <div class="param-desc">
  1480. The modified result parameter or a new BoundingSphere instance if none was provided.
  1481. </div>
  1482. <dl class="details">
  1483. </dl>
  1484. </dd>
  1485. <dt>
  1486. <div class="nameContainer">
  1487. <h4 class="name" id=".unpack">
  1488. <a href="#.unpack" class="doc-link"></a>
  1489. <span class="type-signature attribute-static">static</span>Cesium.BoundingSphere.unpack<span class="signature">(array, <span class="optional">startingIndex</span>, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1490. <div class="source-link rightLinks">
  1491. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L845">Core/BoundingSphere.js 845</a>
  1492. </div>
  1493. </h4>
  1494. </div>
  1495. </dt>
  1496. <dd>
  1497. <div class="description">
  1498. Retrieves an instance from a packed array.
  1499. </div>
  1500. <table class="params">
  1501. <thead>
  1502. <tr>
  1503. <th>Name</th>
  1504. <th>Type</th>
  1505. <th>Default</th>
  1506. <th class="last">Description</th>
  1507. </tr>
  1508. </thead>
  1509. <tbody>
  1510. <tr>
  1511. <td class="name"><code>array</code></td>
  1512. <td class="type">
  1513. <span class="param-type">Array.&lt;Number></span>
  1514. </td>
  1515. <td class="default">
  1516. </td>
  1517. <td class="description last">
  1518. The packed array.</td>
  1519. </tr>
  1520. <tr>
  1521. <td class="name"><code>startingIndex</code></td>
  1522. <td class="type">
  1523. <span class="param-type">Number</span>
  1524. </td>
  1525. <td class="default">
  1526. <code class="language-javascript">0</code>
  1527. </td>
  1528. <td class="description last">
  1529. <span class="optional">optional</span>
  1530. The starting index of the element to be unpacked.</td>
  1531. </tr>
  1532. <tr>
  1533. <td class="name"><code>result</code></td>
  1534. <td class="type">
  1535. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1536. </td>
  1537. <td class="default">
  1538. </td>
  1539. <td class="description last">
  1540. <span class="optional">optional</span>
  1541. The object into which to store the result.</td>
  1542. </tr>
  1543. </tbody>
  1544. </table>
  1545. <h5>Returns:</h5>
  1546. <div class="param-desc">
  1547. The modified result parameter or a new BoundingSphere instance if one was not provided.
  1548. </div>
  1549. <dl class="details">
  1550. </dl>
  1551. </dd>
  1552. <dt>
  1553. <div class="nameContainer">
  1554. <h4 class="name" id="clone">
  1555. <a href="#clone" class="doc-link"></a>
  1556. clone<span class="signature">(<span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1557. <div class="source-link rightLinks">
  1558. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1344">Core/BoundingSphere.js 1344</a>
  1559. </div>
  1560. </h4>
  1561. </div>
  1562. </dt>
  1563. <dd>
  1564. <div class="description">
  1565. Duplicates this BoundingSphere instance.
  1566. </div>
  1567. <table class="params">
  1568. <thead>
  1569. <tr>
  1570. <th>Name</th>
  1571. <th>Type</th>
  1572. <th class="last">Description</th>
  1573. </tr>
  1574. </thead>
  1575. <tbody>
  1576. <tr>
  1577. <td class="name"><code>result</code></td>
  1578. <td class="type">
  1579. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1580. </td>
  1581. <td class="description last">
  1582. <span class="optional">optional</span>
  1583. The object onto which to store the result.</td>
  1584. </tr>
  1585. </tbody>
  1586. </table>
  1587. <h5>Returns:</h5>
  1588. <div class="param-desc">
  1589. The modified result parameter or a new BoundingSphere instance if none was provided.
  1590. </div>
  1591. <dl class="details">
  1592. </dl>
  1593. </dd>
  1594. <dt>
  1595. <div class="nameContainer">
  1596. <h4 class="name" id="computePlaneDistances">
  1597. <a href="#computePlaneDistances" class="doc-link"></a>
  1598. computePlaneDistances<span class="signature">(position, direction, <span class="optional">result</span>)</span> &rarr; <span class="type-signature returnType"><a href="Interval.html">Interval</a></span>
  1599. <div class="source-link rightLinks">
  1600. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1313">Core/BoundingSphere.js 1313</a>
  1601. </div>
  1602. </h4>
  1603. </div>
  1604. </dt>
  1605. <dd>
  1606. <div class="description">
  1607. The distances calculated by the vector from the center of the bounding sphere to position projected onto direction plus/minus the radius of the bounding sphere. <br> If you imagine the infinite number of planes with normal direction, this computes the smallest distance to the closest and farthest planes from position that intersect the bounding sphere.
  1608. </div>
  1609. <table class="params">
  1610. <thead>
  1611. <tr>
  1612. <th>Name</th>
  1613. <th>Type</th>
  1614. <th class="last">Description</th>
  1615. </tr>
  1616. </thead>
  1617. <tbody>
  1618. <tr>
  1619. <td class="name"><code>position</code></td>
  1620. <td class="type">
  1621. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  1622. </td>
  1623. <td class="description last">
  1624. The position to calculate the distance from.</td>
  1625. </tr>
  1626. <tr>
  1627. <td class="name"><code>direction</code></td>
  1628. <td class="type">
  1629. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  1630. </td>
  1631. <td class="description last">
  1632. The direction from position.</td>
  1633. </tr>
  1634. <tr>
  1635. <td class="name"><code>result</code></td>
  1636. <td class="type">
  1637. <span class="param-type"><a href="Interval.html">Interval</a></span>
  1638. </td>
  1639. <td class="description last">
  1640. <span class="optional">optional</span>
  1641. A Interval to store the nearest and farthest distances.</td>
  1642. </tr>
  1643. </tbody>
  1644. </table>
  1645. <h5>Returns:</h5>
  1646. <div class="param-desc">
  1647. The nearest and farthest distances on the bounding sphere from position in direction.
  1648. </div>
  1649. <dl class="details">
  1650. </dl>
  1651. </dd>
  1652. <dt>
  1653. <div class="nameContainer">
  1654. <h4 class="name" id="distanceSquaredTo">
  1655. <a href="#distanceSquaredTo" class="doc-link"></a>
  1656. distanceSquaredTo<span class="signature">(cartesian)</span> &rarr; <span class="type-signature returnType">Number</span>
  1657. <div class="source-link rightLinks">
  1658. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1297">Core/BoundingSphere.js 1297</a>
  1659. </div>
  1660. </h4>
  1661. </div>
  1662. </dt>
  1663. <dd>
  1664. <div class="description">
  1665. Computes the estimated distance squared from the closest point on a bounding sphere to a point.
  1666. </div>
  1667. <table class="params">
  1668. <thead>
  1669. <tr>
  1670. <th>Name</th>
  1671. <th>Type</th>
  1672. <th class="last">Description</th>
  1673. </tr>
  1674. </thead>
  1675. <tbody>
  1676. <tr>
  1677. <td class="name"><code>cartesian</code></td>
  1678. <td class="type">
  1679. <span class="param-type"><a href="Cartesian3.html">Cartesian3</a></span>
  1680. </td>
  1681. <td class="description last">
  1682. The point</td>
  1683. </tr>
  1684. </tbody>
  1685. </table>
  1686. <h5>Returns:</h5>
  1687. <div class="param-desc">
  1688. The estimated distance squared from the bounding sphere to the point.
  1689. </div>
  1690. <dl class="details">
  1691. <h5>Example:</h5>
  1692. <pre><code class="language-javascript">// Sort bounding spheres from back to front spheres.sort(function(a, b) { return b.distanceSquaredTo(camera.positionWC) - a.distanceSquaredTo(camera.positionWC); });</code></pre>
  1693. </dl>
  1694. </dd>
  1695. <dt>
  1696. <div class="nameContainer">
  1697. <h4 class="name" id="equals">
  1698. <a href="#equals" class="doc-link"></a>
  1699. equals<span class="signature">(<span class="optional">right</span>)</span> &rarr; <span class="type-signature returnType">Boolean</span>
  1700. <div class="source-link rightLinks">
  1701. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1334">Core/BoundingSphere.js 1334</a>
  1702. </div>
  1703. </h4>
  1704. </div>
  1705. </dt>
  1706. <dd>
  1707. <div class="description">
  1708. Compares this BoundingSphere against the provided BoundingSphere componentwise and returns <code>true</code> if they are equal, <code>false</code> otherwise.
  1709. </div>
  1710. <table class="params">
  1711. <thead>
  1712. <tr>
  1713. <th>Name</th>
  1714. <th>Type</th>
  1715. <th class="last">Description</th>
  1716. </tr>
  1717. </thead>
  1718. <tbody>
  1719. <tr>
  1720. <td class="name"><code>right</code></td>
  1721. <td class="type">
  1722. <span class="param-type"><a href="BoundingSphere.html">BoundingSphere</a></span>
  1723. </td>
  1724. <td class="description last">
  1725. <span class="optional">optional</span>
  1726. The right hand side BoundingSphere.</td>
  1727. </tr>
  1728. </tbody>
  1729. </table>
  1730. <h5>Returns:</h5>
  1731. <div class="param-desc">
  1732. <code>true</code> if they are equal, <code>false</code> otherwise.
  1733. </div>
  1734. <dl class="details">
  1735. </dl>
  1736. </dd>
  1737. <dt>
  1738. <div class="nameContainer">
  1739. <h4 class="name" id="intersectPlane">
  1740. <a href="#intersectPlane" class="doc-link"></a>
  1741. intersectPlane<span class="signature">(plane)</span> &rarr; <span class="type-signature returnType"><a href="Intersect.html">Intersect</a></span>
  1742. <div class="source-link rightLinks">
  1743. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1281">Core/BoundingSphere.js 1281</a>
  1744. </div>
  1745. </h4>
  1746. </div>
  1747. </dt>
  1748. <dd>
  1749. <div class="description">
  1750. Determines which side of a plane the sphere is located.
  1751. </div>
  1752. <table class="params">
  1753. <thead>
  1754. <tr>
  1755. <th>Name</th>
  1756. <th>Type</th>
  1757. <th class="last">Description</th>
  1758. </tr>
  1759. </thead>
  1760. <tbody>
  1761. <tr>
  1762. <td class="name"><code>plane</code></td>
  1763. <td class="type">
  1764. <span class="param-type"><a href="Plane.html">Plane</a></span>
  1765. </td>
  1766. <td class="description last">
  1767. The plane to test against.</td>
  1768. </tr>
  1769. </tbody>
  1770. </table>
  1771. <h5>Returns:</h5>
  1772. <div class="param-desc">
  1773. <a href="Intersect.html#.INSIDE"><code>Intersect.INSIDE</code></a> if the entire sphere is on the side of the plane the normal is pointing, <a href="Intersect.html#.OUTSIDE"><code>Intersect.OUTSIDE</code></a> if the entire sphere is on the opposite side, and <a href="Intersect.html#.INTERSECTING"><code>Intersect.INTERSECTING</code></a> if the sphere intersects the plane.
  1774. </div>
  1775. <dl class="details">
  1776. </dl>
  1777. </dd>
  1778. <dt>
  1779. <div class="nameContainer">
  1780. <h4 class="name" id="isOccluded">
  1781. <a href="#isOccluded" class="doc-link"></a>
  1782. isOccluded<span class="signature">(occluder)</span> &rarr; <span class="type-signature returnType">Boolean</span>
  1783. <div class="source-link rightLinks">
  1784. <a href="https://github.com/AnalyticalGraphicsInc/cesium/blob/1.29/Source/Core/BoundingSphere.js#L1323">Core/BoundingSphere.js 1323</a>
  1785. </div>
  1786. </h4>
  1787. </div>
  1788. </dt>
  1789. <dd>
  1790. <div class="description">
  1791. Determines whether or not a sphere is hidden from view by the occluder.
  1792. </div>
  1793. <table class="params">
  1794. <thead>
  1795. <tr>
  1796. <th>Name</th>
  1797. <th>Type</th>
  1798. <th class="last">Description</th>
  1799. </tr>
  1800. </thead>
  1801. <tbody>
  1802. <tr>
  1803. <td class="name"><code>occluder</code></td>
  1804. <td class="type">
  1805. <span class="param-type"><a href="Occluder.html">Occluder</a></span>
  1806. </td>
  1807. <td class="description last">
  1808. The occluder.</td>
  1809. </tr>
  1810. </tbody>
  1811. </table>
  1812. <h5>Returns:</h5>
  1813. <div class="param-desc">
  1814. <code>true</code> if the sphere is not visible; otherwise <code>false</code>.
  1815. </div>
  1816. <dl class="details">
  1817. </dl>
  1818. </dd>
  1819. </dl>
  1820. </article>
  1821. </section>
  1822. <footer>
  1823. Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.3</a>
  1824. </footer>
  1825. </div>
  1826. <div class="nav">
  1827. <div class="menu">
  1828. <input type="text" class="classFilter" id="ClassFilter" placeholder="Search">
  1829. <ul id="ClassList"><li data-name="Animation"><a href="Animation.html">Animation</a></li><li data-name="AnimationViewModel"><a href="AnimationViewModel.html">AnimationViewModel</a></li><li data-name="Appearance"><a href="Appearance.html">Appearance</a></li><li data-name="ArcGisImageServerTerrainProvider"><a href="ArcGisImageServerTerrainProvider.html">ArcGisImageServerTerrainProvider</a></li><li data-name="ArcGisMapServerImageryProvider"><a href="ArcGisMapServerImageryProvider.html">ArcGisMapServerImageryProvider</a></li><li data-name="AssociativeArray"><a href="AssociativeArray.html">AssociativeArray</a></li><li data-name="AxisAlignedBoundingBox"><a href="AxisAlignedBoundingBox.html">AxisAlignedBoundingBox</a></li><li data-name="barycentricCoordinates"><a href="barycentricCoordinates.html">barycentricCoordinates</a></li><li data-name="BaseLayerPicker"><a href="BaseLayerPicker.html">BaseLayerPicker</a></li><li data-name="BaseLayerPickerViewModel"><a href="BaseLayerPickerViewModel.html">BaseLayerPickerViewModel</a></li><li data-name="Billboard"><a href="Billboard.html">Billboard</a></li><li data-name="BillboardCollection"><a href="BillboardCollection.html">BillboardCollection</a></li><li data-name="BillboardGraphics"><a href="BillboardGraphics.html">BillboardGraphics</a></li><li data-name="BillboardVisualizer"><a href="BillboardVisualizer.html">BillboardVisualizer</a></li><li data-name="binarySearch"><a href="binarySearch.html">binarySearch</a></li><li data-name="BingMapsApi"><a href="BingMapsApi.html">BingMapsApi</a></li><li data-name="BingMapsImageryProvider"><a href="BingMapsImageryProvider.html">BingMapsImageryProvider</a></li><li data-name="BingMapsStyle"><a href="BingMapsStyle.html">BingMapsStyle</a></li><li data-name="BlendEquation"><a href="BlendEquation.html">BlendEquation</a></li><li data-name="BlendFunction"><a href="BlendFunction.html">BlendFunction</a></li><li data-name="BlendingState"><a href="BlendingState.html">BlendingState</a></li><li data-name="BoundingRectangle"><a href="BoundingRectangle.html">BoundingRectangle</a></li><li data-name="BoundingSphere"><a href="BoundingSphere.html">BoundingSphere</a></li><li data-name="BoxGeometry"><a href="BoxGeometry.html">BoxGeometry</a></li><li data-name="BoxGeometryUpdater"><a href="BoxGeometryUpdater.html">BoxGeometryUpdater</a></li><li data-name="BoxGraphics"><a href="BoxGraphics.html">BoxGraphics</a></li><li data-name="BoxOutlineGeometry"><a href="BoxOutlineGeometry.html">BoxOutlineGeometry</a></li><li data-name="CallbackProperty"><a href="CallbackProperty.html">CallbackProperty</a></li><li data-name="Camera"><a href="Camera.html">Camera</a></li><li data-name="CameraEventAggregator"><a href="CameraEventAggregator.html">CameraEventAggregator</a></li><li data-name="CameraEventType"><a href="CameraEventType.html">CameraEventType</a></li><li data-name="cancelAnimationFrame"><a href="cancelAnimationFrame.html">cancelAnimationFrame</a></li><li data-name="Cartesian2"><a href="Cartesian2.html">Cartesian2</a></li><li data-name="Cartesian3"><a href="Cartesian3.html">Cartesian3</a></li><li data-name="Cartesian4"><a href="Cartesian4.html">Cartesian4</a></li><li data-name="Cartographic"><a href="Cartographic.html">Cartographic</a></li><li data-name="CatmullRomSpline"><a href="CatmullRomSpline.html">CatmullRomSpline</a></li><li data-name="CesiumInspector"><a href="CesiumInspector.html">CesiumInspector</a></li><li data-name="CesiumInspectorViewModel"><a href="CesiumInspectorViewModel.html">CesiumInspectorViewModel</a></li><li data-name="CesiumMath"><a href="CesiumMath.html">CesiumMath</a></li><li data-name="CesiumTerrainProvider"><a href="CesiumTerrainProvider.html">CesiumTerrainProvider</a></li><li data-name="CesiumWidget"><a href="CesiumWidget.html">CesiumWidget</a></li><li data-name="CheckerboardMaterialProperty"><a href="CheckerboardMaterialProperty.html">CheckerboardMaterialProperty</a></li><li data-name="CircleGeometry"><a href="CircleGeometry.html">CircleGeometry</a></li><li data-name="CircleOutlineGeometry"><a href="CircleOutlineGeometry.html">CircleOutlineGeometry</a></li><li data-name="Clock"><a href="Clock.html">Clock</a></li><li data-name="ClockRange"><a href="ClockRange.html">ClockRange</a></li><li data-name="ClockStep"><a href="ClockStep.html">ClockStep</a></li><li data-name="ClockViewModel"><a href="ClockViewModel.html">ClockViewModel</a></li><li data-name="clone"><a href="clone.html">clone</a></li><li data-name="Color"><a href="Color.html">Color</a></li><li data-name="ColorBlendMode"><a href="ColorBlendMode.html">ColorBlendMode</a></li><li data-name="ColorGeometryInstanceAttribute"><a href="ColorGeometryInstanceAttribute.html">ColorGeometryInstanceAttribute</a></li><li data-name="ColorMaterialProperty"><a href="ColorMaterialProperty.html">ColorMaterialProperty</a></li><li data-name="combine"><a href="combine.html">combine</a></li><li data-name="Command"><a href="Command.html">Command</a></li><li data-name="ComponentDatatype"><a href="ComponentDatatype.html">ComponentDatatype</a></li><li data-name="CompositeEntityCollection"><a href="CompositeEntityCollection.html">CompositeEntityCollection</a></li><li data-name="CompositeMaterialProperty"><a href="CompositeMaterialProperty.html">CompositeMaterialProperty</a></li><li data-name="CompositePositionProperty"><a href="CompositePositionProperty.html">CompositePositionProperty</a></li><li data-name="CompositeProperty"><a href="CompositeProperty.html">CompositeProperty</a></li><li data-name="ConstantPositionProperty"><a href="ConstantPositionProperty.html">ConstantPositionProperty</a></li><li data-name="ConstantProperty"><a href="ConstantProperty.html">ConstantProperty</a></li><li data-name="CornerType"><a href="CornerType.html">CornerType</a></li><li data-name="CorridorGeometry"><a href="CorridorGeometry.html">CorridorGeometry</a></li><li data-name="CorridorGeometryUpdater"><a href="CorridorGeometryUpdater.html">CorridorGeometryUpdater</a></li><li data-name="CorridorGraphics"><a href="CorridorGraphics.html">CorridorGraphics</a></li><li data-name="CorridorOutlineGeometry"><a href="CorridorOutlineGeometry.html">CorridorOutlineGeometry</a></li><li data-name="createCommand"><a href="createCommand.html">createCommand</a></li><li data-name="createGuid"><a href="createGuid.html">createGuid</a></li><li data-name="createOpenStreetMapImageryProvider"><a href="createOpenStreetMapImageryProvider.html">createOpenStreetMapImageryProvider</a></li><li data-name="createTangentSpaceDebugPrimitive"><a href="createTangentSpaceDebugPrimitive.html">createTangentSpaceDebugPrimitive</a></li><li data-name="createTaskProcessorWorker"><a href="createTaskProcessorWorker.html">createTaskProcessorWorker</a></li><li data-name="createTileMapServiceImageryProvider"><a href="createTileMapServiceImageryProvider.html">createTileMapServiceImageryProvider</a></li><li data-name="Credit"><a href="Credit.html">Credit</a></li><li data-name="CreditDisplay"><a href="CreditDisplay.html">CreditDisplay</a></li><li data-name="CubicRealPolynomial"><a href="CubicRealPolynomial.html">CubicRealPolynomial</a></li><li data-name="CullFace"><a href="CullFace.html">CullFace</a></li><li data-name="CullingVolume"><a href="CullingVolume.html">CullingVolume</a></li><li data-name="CustomDataSource"><a href="CustomDataSource.html">CustomDataSource</a></li><li data-name="CylinderGeometry"><a href="CylinderGeometry.html">CylinderGeometry</a></li><li data-name="CylinderGeometryUpdater"><a href="CylinderGeometryUpdater.html">CylinderGeometryUpdater</a></li><li data-name="CylinderGraphics"><a href="CylinderGraphics.html">CylinderGraphics</a></li><li data-name="CylinderOutlineGeometry"><a href="CylinderOutlineGeometry.html">CylinderOutlineGeometry</a></li><li data-name="CzmlDataSource"><a href="CzmlDataSource.html">CzmlDataSource</a></li><li data-name="DataSource"><a href="DataSource.html">DataSource</a></li><li data-name="DataSourceClock"><a href="DataSourceClock.html">DataSourceClock</a></li><li data-name="DataSourceCollection"><a href="DataSourceCollection.html">DataSourceCollection</a></li><li data-name="DataSourceDisplay"><a href="DataSourceDisplay.html">DataSourceDisplay</a></li><li data-name="DebugAppearance"><a href="DebugAppearance.html">DebugAppearance</a></li><li data-name="DebugCameraPrimitive"><a href="DebugCameraPrimitive.html">DebugCameraPrimitive</a></li><li data-name="DebugModelMatrixPrimitive"><a href="DebugModelMatrixPrimitive.html">DebugModelMatrixPrimitive</a></li><li data-name="DefaultProxy"><a href="DefaultProxy.html">DefaultProxy</a></li><li data-name="defaultValue"><a href="defaultValue.html">defaultValue</a></li><li data-name="defined"><a href="defined.html">defined</a></li><li data-name="DepthFunction"><a href="DepthFunction.html">DepthFunction</a></li><li data-name="destroyObject"><a href="destroyObject.html">destroyObject</a></li><li data-name="DeveloperError"><a href="DeveloperError.html">DeveloperError</a></li><li data-name="DiscardMissingTileImagePolicy"><a href="DiscardMissingTileImagePolicy.html">DiscardMissingTileImagePolicy</a></li><li data-name="DistanceDisplayCondition"><a href="DistanceDisplayCondition.html">DistanceDisplayCondition</a></li><li data-name="DistanceDisplayConditionGeometryInstanceAttribute"><a href="DistanceDisplayConditionGeometryInstanceAttribute.html">DistanceDisplayConditionGeometryInstanceAttribute</a></li><li data-name="DynamicGeometryUpdater"><a href="DynamicGeometryUpdater.html">DynamicGeometryUpdater</a></li><li data-name="EasingFunction"><a href="EasingFunction.html">EasingFunction</a></li><li data-name="EllipseGeometry"><a href="EllipseGeometry.html">EllipseGeometry</a></li><li data-name="EllipseGeometryUpdater"><a href="EllipseGeometryUpdater.html">EllipseGeometryUpdater</a></li><li data-name="EllipseGraphics"><a href="EllipseGraphics.html">EllipseGraphics</a></li><li data-name="EllipseOutlineGeometry"><a href="EllipseOutlineGeometry.html">EllipseOutlineGeometry</a></li><li data-name="Ellipsoid"><a href="Ellipsoid.html">Ellipsoid</a></li><li data-name="EllipsoidGeodesic"><a href="EllipsoidGeodesic.html">EllipsoidGeodesic</a></li><li data-name="EllipsoidGeometry"><a href="EllipsoidGeometry.html">EllipsoidGeometry</a></li><li data-name="EllipsoidGeometryUpdater"><a href="EllipsoidGeometryUpdater.html">EllipsoidGeometryUpdater</a></li><li data-name="EllipsoidGraphics"><a href="EllipsoidGraphics.html">EllipsoidGraphics</a></li><li data-name="EllipsoidOutlineGeometry"><a href="EllipsoidOutlineGeometry.html">EllipsoidOutlineGeometry</a></li><li data-name="EllipsoidSurfaceAppearance"><a href="EllipsoidSurfaceAppearance.html">EllipsoidSurfaceAppearance</a></li><li data-name="EllipsoidTangentPlane"><a href="EllipsoidTangentPlane.html">EllipsoidTangentPlane</a></li><li data-name="EllipsoidTerrainProvider"><a href="EllipsoidTerrainProvider.html">EllipsoidTerrainProvider</a></li><li data-name="Entity"><a href="Entity.html">Entity</a></li><li data-name="EntityCluster"><a href="EntityCluster.html">EntityCluster</a></li><li data-name="EntityCollection"><a href="EntityCollection.html">EntityCollection</a></li><li data-name="EntityView"><a href="EntityView.html">EntityView</a></li><li data-name="Event"><a href="Event.html">Event</a></li><li data-name="EventHelper"><a href="EventHelper.html">EventHelper</a></li><li data-name="ExtrapolationType"><a href="ExtrapolationType.html">ExtrapolationType</a></li><li data-name="FeatureDetection"><a href="FeatureDetection.html">FeatureDetection</a></li><li data-name="Fog"><a href="Fog.html">Fog</a></li><li data-name="formatError"><a href="formatError.html">formatError</a></li><li data-name="FrameRateMonitor"><a href="FrameRateMonitor.html">FrameRateMonitor</a></li><li data-name="Fullscreen"><a href="Fullscreen.html">Fullscreen</a></li><li data-name="FullscreenButton"><a href="FullscreenButton.html">FullscreenButton</a></li><li data-name="FullscreenButtonViewModel"><a href="FullscreenButtonViewModel.html">FullscreenButtonViewModel</a></li><li data-name="Geocoder"><a href="Geocoder.html">Geocoder</a></li><li data-name="GeocoderViewModel"><a href="GeocoderViewModel.html">GeocoderViewModel</a></li><li data-name="GeographicProjection"><a href="GeographicProjection.html">GeographicProjection</a></li><li data-name="GeographicTilingScheme"><a href="GeographicTilingScheme.html">GeographicTilingScheme</a></li><li data-name="GeoJsonDataSource"><a href="GeoJsonDataSource.html">GeoJsonDataSource</a></li><li data-name="Geometry"><a href="Geometry.html">Geometry</a></li><li data-name="GeometryAttribute"><a href="GeometryAttribute.html">GeometryAttribute</a></li><li data-name="GeometryAttributes"><a href="GeometryAttributes.html">GeometryAttributes</a></li><li data-name="GeometryInstance"><a href="GeometryInstance.html">GeometryInstance</a></li><li data-name="GeometryInstanceAttribute"><a href="GeometryInstanceAttribute.html">GeometryInstanceAttribute</a></li><li data-name="GeometryPipeline"><a href="GeometryPipeline.html">GeometryPipeline</a></li><li data-name="GeometryUpdater"><a href="GeometryUpdater.html">GeometryUpdater</a></li><li data-name="GeometryVisualizer"><a href="GeometryVisualizer.html">GeometryVisualizer</a></li><li data-name="getAbsoluteUri"><a href="getAbsoluteUri.html">getAbsoluteUri</a></li><li data-name="getBaseUri"><a href="getBaseUri.html">getBaseUri</a></li><li data-name="getExtensionFromUri"><a href="getExtensionFromUri.html">getExtensionFromUri</a></li><li data-name="GetFeatureInfoFormat"><a href="GetFeatureInfoFormat.html">GetFeatureInfoFormat</a></li><li data-name="getFilenameFromUri"><a href="getFilenameFromUri.html">getFilenameFromUri</a></li><li data-name="getImagePixels"><a href="getImagePixels.html">getImagePixels</a></li><li data-name="getTimestamp"><a href="getTimestamp.html">getTimestamp</a></li><li data-name="Globe"><a href="Globe.html">Globe</a></li><li data-name="GoogleEarthImageryProvider"><a href="GoogleEarthImageryProvider.html">GoogleEarthImageryProvider</a></li><li data-name="GregorianDate"><a href="GregorianDate.html">GregorianDate</a></li><li data-name="GridImageryProvider"><a href="GridImageryProvider.html">GridImageryProvider</a></li><li data-name="GridMaterialProperty"><a href="GridMaterialProperty.html">GridMaterialProperty</a></li><li data-name="GroundPrimitive"><a href="GroundPrimitive.html">GroundPrimitive</a></li><li data-name="HeadingPitchRange"><a href="HeadingPitchRange.html">HeadingPitchRange</a></li><li data-name="HeadingPitchRoll"><a href="HeadingPitchRoll.html">HeadingPitchRoll</a></li><li data-name="HeightmapTerrainData"><a href="HeightmapTerrainData.html">HeightmapTerrainData</a></li><li data-name="HeightReference"><a href="HeightReference.html">HeightReference</a></li><li data-name="HermitePolynomialApproximation"><a href="HermitePolynomialApproximation.html">HermitePolynomialApproximation</a></li><li data-name="HermiteSpline"><a href="HermiteSpline.html">HermiteSpline</a></li><li data-name="HomeButton"><a href="HomeButton.html">HomeButton</a></li><li data-name="HomeButtonViewModel"><a href="HomeButtonViewModel.html">HomeButtonViewModel</a></li><li data-name="HorizontalOrigin"><a href="HorizontalOrigin.html">HorizontalOrigin</a></li><li data-name="ImageMaterialProperty"><a href="ImageMaterialProperty.html">ImageMaterialProperty</a></li><li data-name="ImageryLayer"><a href="ImageryLayer.html">ImageryLayer</a></li><li data-name="ImageryLayerCollection"><a href="ImageryLayerCollection.html">ImageryLayerCollection</a></li><li data-name="ImageryLayerFeatureInfo"><a href="ImageryLayerFeatureInfo.html">ImageryLayerFeatureInfo</a></li><li data-name="ImageryProvider"><a href="ImageryProvider.html">ImageryProvider</a></li><li data-name="IndexDatatype"><a href="IndexDatatype.html">IndexDatatype</a></li><li data-name="InfoBox"><a href="InfoBox.html">InfoBox</a></li><li data-name="InfoBoxViewModel"><a href="InfoBoxViewModel.html">InfoBoxViewModel</a></li><li data-name="InterpolationAlgorithm"><a href="InterpolationAlgorithm.html">InterpolationAlgorithm</a></li><li data-name="Intersect"><a href="Intersect.html">Intersect</a></li><li data-name="Intersections2D"><a href="Intersections2D.html">Intersections2D</a></li><li data-name="IntersectionTests"><a href="IntersectionTests.html">IntersectionTests</a></li><li data-name="Interval"><a href="Interval.html">Interval</a></li><li data-name="isArray"><a href="isArray.html">isArray</a></li><li data-name="isLeapYear"><a href="isLeapYear.html">isLeapYear</a></li><li data-name="Iso8601"><a href="Iso8601.html">Iso8601</a></li><li data-name="JulianDate"><a href="JulianDate.html">JulianDate</a></li><li data-name="KeyboardEventModifier"><a href="KeyboardEventModifier.html">KeyboardEventModifier</a></li><li data-name="KmlDataSource"><a href="KmlDataSource.html">KmlDataSource</a></li><li data-name="KmlFeatureData"><a href="KmlFeatureData.html">KmlFeatureData</a></li><li data-name="Label"><a href="Label.html">Label</a></li><li data-name="LabelCollection"><a href="LabelCollection.html">LabelCollection</a></li><li data-name="LabelGraphics"><a href="LabelGraphics.html">LabelGraphics</a></li><li data-name="LabelStyle"><a href="LabelStyle.html">LabelStyle</a></li><li data-name="LabelVisualizer"><a href="LabelVisualizer.html">LabelVisualizer</a></li><li data-name="LagrangePolynomialApproximation"><a href="LagrangePolynomialApproximation.html">LagrangePolynomialApproximation</a></li><li data-name="LeapSecond"><a href="LeapSecond.html">LeapSecond</a></li><li data-name="LinearApproximation"><a href="LinearApproximation.html">LinearApproximation</a></li><li data-name="LinearSpline"><a href="LinearSpline.html">LinearSpline</a></li><li data-name="loadArrayBuffer"><a href="loadArrayBuffer.html">loadArrayBuffer</a></li><li data-name="loadBlob"><a href="loadBlob.html">loadBlob</a></li><li data-name="loadImage"><a href="loadImage.html">loadImage</a></li><li data-name="loadImageViaBlob"><a href="loadImageViaBlob.html">loadImageViaBlob</a></li><li data-name="loadJson"><a href="loadJson.html">loadJson</a></li><li data-name="loadJsonp"><a href="loadJsonp.html">loadJsonp</a></li><li data-name="loadText"><a href="loadText.html">loadText</a></li><li data-name="loadWithXhr"><a href="loadWithXhr.html">loadWithXhr</a></li><li data-name="loadXML"><a href="loadXML.html">loadXML</a></li><li data-name="MapboxImageryProvider"><a href="MapboxImageryProvider.html">MapboxImageryProvider</a></li><li data-name="MapMode2D"><a href="MapMode2D.html">MapMode2D</a></li><li data-name="MapProjection"><a href="MapProjection.html">MapProjection</a></li><li data-name="Material"><a href="Material.html">Material</a></li><li data-name="MaterialAppearance"><a href="MaterialAppearance.html">MaterialAppearance</a></li><li data-name="MaterialProperty"><a href="MaterialProperty.html">MaterialProperty</a></li><li data-name="Matrix2"><a href="Matrix2.html">Matrix2</a></li><li data-name="Matrix3"><a href="Matrix3.html">Matrix3</a></li><li data-name="Matrix4"><a href="Matrix4.html">Matrix4</a></li><li data-name="mergeSort"><a href="mergeSort.html">mergeSort</a></li><li data-name="Model"><a href="Model.html">Model</a></li><li data-name="ModelAnimation"><a href="ModelAnimation.html">ModelAnimation</a></li><li data-name="ModelAnimationCollection"><a href="ModelAnimationCollection.html">ModelAnimationCollection</a></li><li data-name="ModelAnimationLoop"><a href="ModelAnimationLoop.html">ModelAnimationLoop</a></li><li data-name="ModelGraphics"><a href="ModelGraphics.html">ModelGraphics</a></li><li data-name="ModelMaterial"><a href="ModelMaterial.html">ModelMaterial</a></li><li data-name="ModelMesh"><a href="ModelMesh.html">ModelMesh</a></li><li data-name="ModelNode"><a href="ModelNode.html">ModelNode</a></li><li data-name="ModelVisualizer"><a href="ModelVisualizer.html">ModelVisualizer</a></li><li data-name="Moon"><a href="Moon.html">Moon</a></li><li data-name="NavigationHelpButton"><a href="NavigationHelpButton.html">NavigationHelpButton</a></li><li data-name="NavigationHelpButtonViewModel"><a href="NavigationHelpButtonViewModel.html">NavigationHelpButtonViewModel</a></li><li data-name="NearFarScalar"><a href="NearFarScalar.html">NearFarScalar</a></li><li data-name="NeverTileDiscardPolicy"><a href="NeverTileDiscardPolicy.html">NeverTileDiscardPolicy</a></li><li data-name="NodeTransformationProperty"><a href="NodeTransformationProperty.html">NodeTransformationProperty</a></li><li data-name="objectToQuery"><a href="objectToQuery.html">objectToQuery</a></li><li data-name="Occluder"><a href="Occluder.html">Occluder</a></li><li data-name="OrientedBoundingBox"><a href="OrientedBoundingBox.html">OrientedBoundingBox</a></li><li data-name="OrthographicFrustum"><a href="OrthographicFrustum.html">OrthographicFrustum</a></li><li data-name="Packable"><a href="Packable.html">Packable</a></li><li data-name="PackableForInterpolation"><a href="PackableForInterpolation.html">PackableForInterpolation</a></li><li data-name="PathGraphics"><a href="PathGraphics.html">PathGraphics</a></li><li data-name="PathVisualizer"><a href="PathVisualizer.html">PathVisualizer</a></li><li data-name="PerformanceWatchdog"><a href="PerformanceWatchdog.html">PerformanceWatchdog</a></li><li data-name="PerformanceWatchdogViewModel"><a href="PerformanceWatchdogViewModel.html">PerformanceWatchdogViewModel</a></li><li data-name="PerInstanceColorAppearance"><a href="PerInstanceColorAppearance.html">PerInstanceColorAppearance</a></li><li data-name="PerspectiveFrustum"><a href="PerspectiveFrustum.html">PerspectiveFrustum</a></li><li data-name="PerspectiveOffCenterFrustum"><a href="PerspectiveOffCenterFrustum.html">PerspectiveOffCenterFrustum</a></li><li data-name="PinBuilder"><a href="PinBuilder.html">PinBuilder</a></li><li data-name="PixelFormat"><a href="PixelFormat.html">PixelFormat</a></li><li data-name="Plane"><a href="Plane.html">Plane</a></li><li data-name="PointGraphics"><a href="PointGraphics.html">PointGraphics</a></li><li data-name="pointInsideTriangle"><a href="pointInsideTriangle.html">pointInsideTriangle</a></li><li data-name="PointPrimitive"><a href="PointPrimitive.html">PointPrimitive</a></li><li data-name="PointPrimitiveCollection"><a href="PointPrimitiveCollection.html">PointPrimitiveCollection</a></li><li data-name="PointVisualizer"><a href="PointVisualizer.html">PointVisualizer</a></li><li data-name="PolygonGeometry"><a href="PolygonGeometry.html">PolygonGeometry</a></li><li data-name="PolygonGeometryUpdater"><a href="PolygonGeometryUpdater.html">PolygonGeometryUpdater</a></li><li data-name="PolygonGraphics"><a href="PolygonGraphics.html">PolygonGraphics</a></li><li data-name="PolygonHierarchy"><a href="PolygonHierarchy.html">PolygonHierarchy</a></li><li data-name="PolygonOutlineGeometry"><a href="PolygonOutlineGeometry.html">PolygonOutlineGeometry</a></li><li data-name="Polyline"><a href="Polyline.html">Polyline</a></li><li data-name="PolylineArrowMaterialProperty"><a href="PolylineArrowMaterialProperty.html">PolylineArrowMaterialProperty</a></li><li data-name="PolylineCollection"><a href="PolylineCollection.html">PolylineCollection</a></li><li data-name="PolylineColorAppearance"><a href="PolylineColorAppearance.html">PolylineColorAppearance</a></li><li data-name="PolylineGeometry"><a href="PolylineGeometry.html">PolylineGeometry</a></li><li data-name="PolylineGeometryUpdater"><a href="PolylineGeometryUpdater.html">PolylineGeometryUpdater</a></li><li data-name="PolylineGlowMaterialProperty"><a href="PolylineGlowMaterialProperty.html">PolylineGlowMaterialProperty</a></li><li data-name="PolylineGraphics"><a href="PolylineGraphics.html">PolylineGraphics</a></li><li data-name="PolylineMaterialAppearance"><a href="PolylineMaterialAppearance.html">PolylineMaterialAppearance</a></li><li data-name="PolylineOutlineMaterialProperty"><a href="PolylineOutlineMaterialProperty.html">PolylineOutlineMaterialProperty</a></li><li data-name="PolylineVolumeGeometry"><a href="PolylineVolumeGeometry.html">PolylineVolumeGeometry</a></li><li data-name="PolylineVolumeGeometryUpdater"><a href="PolylineVolumeGeometryUpdater.html">PolylineVolumeGeometryUpdater</a></li><li data-name="PolylineVolumeGraphics"><a href="PolylineVolumeGraphics.html">PolylineVolumeGraphics</a></li><li data-name="PolylineVolumeOutlineGeometry"><a href="PolylineVolumeOutlineGeometry.html">PolylineVolumeOutlineGeometry</a></li><li data-name="PositionProperty"><a href="PositionProperty.html">PositionProperty</a></li><li data-name="PositionPropertyArray"><a href="PositionPropertyArray.html">PositionPropertyArray</a></li><li data-name="Primitive"><a href="Primitive.html">Primitive</a></li><li data-name="PrimitiveCollection"><a href="PrimitiveCollection.html">PrimitiveCollection</a></li><li data-name="PrimitiveType"><a href="PrimitiveType.html">PrimitiveType</a></li><li data-name="Property"><a href="Property.html">Property</a></li><li data-name="PropertyArray"><a href="PropertyArray.html">PropertyArray</a></li><li data-name="PropertyBag"><a href="PropertyBag.html">PropertyBag</a></li><li data-name="ProviderViewModel"><a href="ProviderViewModel.html">ProviderViewModel</a></li><li data-name="QuadraticRealPolynomial"><a href="QuadraticRealPolynomial.html">QuadraticRealPolynomial</a></li><li data-name="QuantizedMeshTerrainData"><a href="QuantizedMeshTerrainData.html">QuantizedMeshTerrainData</a></li><li data-name="QuarticRealPolynomial"><a href="QuarticRealPolynomial.html">QuarticRealPolynomial</a></li><li data-name="Quaternion"><a href="Quaternion.html">Quaternion</a></li><li data-name="QuaternionSpline"><a href="QuaternionSpline.html">QuaternionSpline</a></li><li data-name="queryToObject"><a href="queryToObject.html">queryToObject</a></li><li data-name="Queue"><a href="Queue.html">Queue</a></li><li data-name="Ray"><a href="Ray.html">Ray</a></li><li data-name="Rectangle"><a href="Rectangle.html">Rectangle</a></li><li data-name="RectangleGeometry"><a href="RectangleGeometry.html">RectangleGeometry</a></li><li data-name="RectangleGeometryUpdater"><a href="RectangleGeometryUpdater.html">RectangleGeometryUpdater</a></li><li data-name="RectangleGraphics"><a href="RectangleGraphics.html">RectangleGraphics</a></li><li data-name="RectangleOutlineGeometry"><a href="RectangleOutlineGeometry.html">RectangleOutlineGeometry</a></li><li data-name="ReferenceFrame"><a href="ReferenceFrame.html">ReferenceFrame</a></li><li data-name="ReferenceProperty"><a href="ReferenceProperty.html">ReferenceProperty</a></li><li data-name="requestAnimationFrame"><a href="requestAnimationFrame.html">requestAnimationFrame</a></li><li data-name="RequestErrorEvent"><a href="RequestErrorEvent.html">RequestErrorEvent</a></li><li data-name="Rotation"><a href="Rotation.html">Rotation</a></li><li data-name="RuntimeError"><a href="RuntimeError.html">RuntimeError</a></li><li data-name="SampledPositionProperty"><a href="SampledPositionProperty.html">SampledPositionProperty</a></li><li data-name="SampledProperty"><a href="SampledProperty.html">SampledProperty</a></li><li data-name="sampleTerrain"><a href="sampleTerrain.html">sampleTerrain</a></li><li data-name="Scene"><a href="Scene.html">Scene</a></li><li data-name="SceneMode"><a href="SceneMode.html">SceneMode</a></li><li data-name="SceneModePicker"><a href="SceneModePicker.html">SceneModePicker</a></li><li data-name="SceneModePickerViewModel"><a href="SceneModePickerViewModel.html">SceneModePickerViewModel</a></li><li data-name="SceneTransforms"><a href="SceneTransforms.html">SceneTransforms</a></li><li data-name="ScreenSpaceCameraController"><a href="ScreenSpaceCameraController.html">ScreenSpaceCameraController</a></li><li data-name="ScreenSpaceEventHandler"><a href="ScreenSpaceEventHandler.html">ScreenSpaceEventHandler</a></li><li data-name="ScreenSpaceEventType"><a href="ScreenSpaceEventType.html">ScreenSpaceEventType</a></li><li data-name="SelectionIndicator"><a href="SelectionIndicator.html">SelectionIndicator</a></li><li data-name="SelectionIndicatorViewModel"><a href="SelectionIndicatorViewModel.html">SelectionIndicatorViewModel</a></li><li data-name="ShadowMap"><a href="ShadowMap.html">ShadowMap</a></li><li data-name="ShadowMode"><a href="ShadowMode.html">ShadowMode</a></li><li data-name="ShowGeometryInstanceAttribute"><a href="ShowGeometryInstanceAttribute.html">ShowGeometryInstanceAttribute</a></li><li data-name="Simon1994PlanetaryPositions"><a href="Simon1994PlanetaryPositions.html">Simon1994PlanetaryPositions</a></li><li data-name="SimplePolylineGeometry"><a href="SimplePolylineGeometry.html">SimplePolylineGeometry</a></li><li data-name="SingleTileImageryProvider"><a href="SingleTileImageryProvider.html">SingleTileImageryProvider</a></li><li data-name="SkyAtmosphere"><a href="SkyAtmosphere.html">SkyAtmosphere</a></li><li data-name="SkyBox"><a href="SkyBox.html">SkyBox</a></li><li data-name="SphereGeometry"><a href="SphereGeometry.html">SphereGeometry</a></li><li data-name="SphereOutlineGeometry"><a href="SphereOutlineGeometry.html">SphereOutlineGeometry</a></li><li data-name="Spherical"><a href="Spherical.html">Spherical</a></li><li data-name="Spline"><a href="Spline.html">Spline</a></li><li data-name="StencilFunction"><a href="StencilFunction.html">StencilFunction</a></li><li data-name="StencilOperation"><a href="StencilOperation.html">StencilOperation</a></li><li data-name="StripeMaterialProperty"><a href="StripeMaterialProperty.html">StripeMaterialProperty</a></li><li data-name="StripeOrientation"><a href="StripeOrientation.html">StripeOrientation</a></li><li data-name="subdivideArray"><a href="subdivideArray.html">subdivideArray</a></li><li data-name="Sun"><a href="Sun.html">Sun</a></li><li data-name="SvgPathBindingHandler"><a href="SvgPathBindingHandler.html">SvgPathBindingHandler</a></li><li data-name="TaskProcessor"><a href="TaskProcessor.html">TaskProcessor</a></li><li data-name="TerrainData"><a href="TerrainData.html">TerrainData</a></li><li data-name="TerrainProvider"><a href="TerrainProvider.html">TerrainProvider</a></li><li data-name="throttleRequestByServer"><a href="throttleRequestByServer.html">throttleRequestByServer</a></li><li data-name="TileCoordinatesImageryProvider"><a href="TileCoordinatesImageryProvider.html">TileCoordinatesImageryProvider</a></li><li data-name="TileDiscardPolicy"><a href="TileDiscardPolicy.html">TileDiscardPolicy</a></li><li data-name="TileProviderError"><a href="TileProviderError.html">TileProviderError</a></li><li data-name="TilingScheme"><a href="TilingScheme.html">TilingScheme</a></li><li data-name="TimeInterval"><a href="TimeInterval.html">TimeInterval</a></li><li data-name="TimeIntervalCollection"><a href="TimeIntervalCollection.html">TimeIntervalCollection</a></li><li data-name="TimeIntervalCollectionPositionProperty"><a href="TimeIntervalCollectionPositionProperty.html">TimeIntervalCollectionPositionProperty</a></li><li data-name="TimeIntervalCollectionProperty"><a href="TimeIntervalCollectionProperty.html">TimeIntervalCollectionProperty</a></li><li data-name="Timeline"><a href="Timeline.html">Timeline</a></li><li data-name="TimeStandard"><a href="TimeStandard.html">TimeStandard</a></li><li data-name="ToggleButtonViewModel"><a href="ToggleButtonViewModel.html">ToggleButtonViewModel</a></li><li data-name="Transforms"><a href="Transforms.html">Transforms</a></li><li data-name="TranslationRotationScale"><a href="TranslationRotationScale.html">TranslationRotationScale</a></li><li data-name="TridiagonalSystemSolver"><a href="TridiagonalSystemSolver.html">TridiagonalSystemSolver</a></li><li data-name="TrustedServers"><a href="TrustedServers.html">TrustedServers</a></li><li data-name="UrlTemplateImageryProvider"><a href="UrlTemplateImageryProvider.html">UrlTemplateImageryProvider</a></li><li data-name="VelocityOrientationProperty"><a href="VelocityOrientationProperty.html">VelocityOrientationProperty</a></li><li data-name="VelocityVectorProperty"><a href="VelocityVectorProperty.html">VelocityVectorProperty</a></li><li data-name="VertexFormat"><a href="VertexFormat.html">VertexFormat</a></li><li data-name="VerticalOrigin"><a href="VerticalOrigin.html">VerticalOrigin</a></li><li data-name="VideoSynchronizer"><a href="VideoSynchronizer.html">VideoSynchronizer</a></li><li data-name="Viewer"><a href="Viewer.html">Viewer</a></li><li data-name="viewerCesiumInspectorMixin"><a href="viewerCesiumInspectorMixin.html">viewerCesiumInspectorMixin</a></li><li data-name="viewerDragDropMixin"><a href="viewerDragDropMixin.html">viewerDragDropMixin</a></li><li data-name="viewerPerformanceWatchdogMixin"><a href="viewerPerformanceWatchdogMixin.html">viewerPerformanceWatchdogMixin</a></li><li data-name="ViewportQuad"><a href="ViewportQuad.html">ViewportQuad</a></li><li data-name="Visibility"><a href="Visibility.html">Visibility</a></li><li data-name="Visualizer"><a href="Visualizer.html">Visualizer</a></li><li data-name="VRButton"><a href="VRButton.html">VRButton</a></li><li data-name="VRButtonViewModel"><a href="VRButtonViewModel.html">VRButtonViewModel</a></li><li data-name="VRTheWorldTerrainProvider"><a href="VRTheWorldTerrainProvider.html">VRTheWorldTerrainProvider</a></li><li data-name="WallGeometry"><a href="WallGeometry.html">WallGeometry</a></li><li data-name="WallGeometryUpdater"><a href="WallGeometryUpdater.html">WallGeometryUpdater</a></li><li data-name="WallGraphics"><a href="WallGraphics.html">WallGraphics</a></li><li data-name="WallOutlineGeometry"><a href="WallOutlineGeometry.html">WallOutlineGeometry</a></li><li data-name="WebGLConstants"><a href="WebGLConstants.html">WebGLConstants</a></li><li data-name="WebMapServiceImageryProvider"><a href="WebMapServiceImageryProvider.html">WebMapServiceImageryProvider</a></li><li data-name="WebMapTileServiceImageryProvider"><a href="WebMapTileServiceImageryProvider.html">WebMapTileServiceImageryProvider</a></li><li data-name="WebMercatorProjection"><a href="WebMercatorProjection.html">WebMercatorProjection</a></li><li data-name="WebMercatorTilingScheme"><a href="WebMercatorTilingScheme.html">WebMercatorTilingScheme</a></li><li data-name="WindingOrder"><a href="WindingOrder.html">WindingOrder</a></li></ul>
  1830. </div>
  1831. </div>
  1832. <script>
  1833. if (window.frameElement) {
  1834. document.body.className = 'embedded';
  1835. var ele = document.createElement('a');
  1836. ele.className = 'popout';
  1837. ele.target = '_blank';
  1838. ele.href = window.location.href;
  1839. ele.title = 'Pop out';
  1840. document.getElementById('main').appendChild(ele);
  1841. }
  1842. // Set targets on external links. Sandcastle and GitHub shouldn't be embedded in any iframe.
  1843. Array.prototype.forEach.call(document.getElementsByTagName('a'), function(a) {
  1844. if (/^https?:/i.test(a.getAttribute('href'))) {
  1845. a.target='_blank';
  1846. }
  1847. });
  1848. </script>
  1849. <script src="javascript/prism.js"></script>
  1850. <script src="javascript/cesiumDoc.js"></script>
  1851. </body>
  1852. </html>