CommonLang.xml 283 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>CommonLang</name>
  5. </assembly>
  6. <members>
  7. <member name="M:CommonLang.Geometry.BoundingBox.CreateFromPoints(System.Collections.Generic.IEnumerable{CommonLang.Geometry.Vector3})">
  8. <summary>
  9. Create a bounding box from the given list of points.
  10. </summary>
  11. <param name="points">The list of Vector3 instances defining the point cloud to bound</param>
  12. <returns>A bounding box that encapsulates the given point cloud.</returns>
  13. <exception cref="T:System.ArgumentException">Thrown if the given list has no points.</exception>
  14. </member>
  15. <member name="T:CommonLang.Geometry.BoundingFrustum">
  16. <summary>
  17. Defines a viewing frustum for intersection operations.
  18. </summary>
  19. </member>
  20. <member name="F:CommonLang.Geometry.BoundingFrustum.PlaneCount">
  21. <summary>
  22. The number of planes in the frustum.
  23. </summary>
  24. </member>
  25. <member name="F:CommonLang.Geometry.BoundingFrustum.CornerCount">
  26. <summary>
  27. The number of corner points in the frustum.
  28. </summary>
  29. </member>
  30. <member name="P:CommonLang.Geometry.BoundingFrustum.Matrix">
  31. <summary>
  32. Gets or sets the <see cref="P:CommonLang.Geometry.BoundingFrustum.Matrix"/> of the frustum.
  33. </summary>
  34. </member>
  35. <member name="P:CommonLang.Geometry.BoundingFrustum.Near">
  36. <summary>
  37. Gets the near plane of the frustum.
  38. </summary>
  39. </member>
  40. <member name="P:CommonLang.Geometry.BoundingFrustum.Far">
  41. <summary>
  42. Gets the far plane of the frustum.
  43. </summary>
  44. </member>
  45. <member name="P:CommonLang.Geometry.BoundingFrustum.Left">
  46. <summary>
  47. Gets the left plane of the frustum.
  48. </summary>
  49. </member>
  50. <member name="P:CommonLang.Geometry.BoundingFrustum.Right">
  51. <summary>
  52. Gets the right plane of the frustum.
  53. </summary>
  54. </member>
  55. <member name="P:CommonLang.Geometry.BoundingFrustum.Top">
  56. <summary>
  57. Gets the top plane of the frustum.
  58. </summary>
  59. </member>
  60. <member name="P:CommonLang.Geometry.BoundingFrustum.Bottom">
  61. <summary>
  62. Gets the bottom plane of the frustum.
  63. </summary>
  64. </member>
  65. <member name="M:CommonLang.Geometry.BoundingFrustum.#ctor(CommonLang.Geometry.Matrix)">
  66. <summary>
  67. Constructs the frustum by extracting the view planes from a matrix.
  68. </summary>
  69. <param name="value">Combined matrix which usually is (View * Projection).</param>
  70. </member>
  71. <member name="M:CommonLang.Geometry.BoundingFrustum.op_Equality(CommonLang.Geometry.BoundingFrustum,CommonLang.Geometry.BoundingFrustum)">
  72. <summary>
  73. Compares whether two <see cref="T:CommonLang.Geometry.BoundingFrustum"/> instances are equal.
  74. </summary>
  75. <param name="a"><see cref="T:CommonLang.Geometry.BoundingFrustum"/> instance on the left of the equal sign.</param>
  76. <param name="b"><see cref="T:CommonLang.Geometry.BoundingFrustum"/> instance on the right of the equal sign.</param>
  77. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  78. </member>
  79. <member name="M:CommonLang.Geometry.BoundingFrustum.op_Inequality(CommonLang.Geometry.BoundingFrustum,CommonLang.Geometry.BoundingFrustum)">
  80. <summary>
  81. Compares whether two <see cref="T:CommonLang.Geometry.BoundingFrustum"/> instances are not equal.
  82. </summary>
  83. <param name="a"><see cref="T:CommonLang.Geometry.BoundingFrustum"/> instance on the left of the not equal sign.</param>
  84. <param name="b"><see cref="T:CommonLang.Geometry.BoundingFrustum"/> instance on the right of the not equal sign.</param>
  85. <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  86. </member>
  87. <member name="M:CommonLang.Geometry.BoundingFrustum.Contains(CommonLang.Geometry.BoundingBox)">
  88. <summary>
  89. Containment test between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingBox"/>.
  90. </summary>
  91. <param name="box">A <see cref="T:CommonLang.Geometry.BoundingBox"/> for testing.</param>
  92. <returns>Result of testing for containment between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingBox"/>.</returns>
  93. </member>
  94. <member name="M:CommonLang.Geometry.BoundingFrustum.Contains(CommonLang.Geometry.BoundingBox@,CommonLang.Geometry.ContainmentType@)">
  95. <summary>
  96. Containment test between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingBox"/>.
  97. </summary>
  98. <param name="box">A <see cref="T:CommonLang.Geometry.BoundingBox"/> for testing.</param>
  99. <param name="result">Result of testing for containment between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingBox"/> as an output parameter.</param>
  100. </member>
  101. <member name="M:CommonLang.Geometry.BoundingFrustum.Contains(CommonLang.Geometry.BoundingFrustum)">
  102. <summary>
  103. Containment test between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  104. </summary>
  105. <param name="frustum">A <see cref="T:CommonLang.Geometry.BoundingFrustum"/> for testing.</param>
  106. <returns>Result of testing for containment between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.</returns>
  107. </member>
  108. <member name="M:CommonLang.Geometry.BoundingFrustum.Contains(CommonLang.Geometry.BoundingSphere)">
  109. <summary>
  110. Containment test between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingSphere"/>.
  111. </summary>
  112. <param name="sphere">A <see cref="T:CommonLang.Geometry.BoundingSphere"/> for testing.</param>
  113. <returns>Result of testing for containment between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingSphere"/>.</returns>
  114. </member>
  115. <member name="M:CommonLang.Geometry.BoundingFrustum.Contains(CommonLang.Geometry.BoundingSphere@,CommonLang.Geometry.ContainmentType@)">
  116. <summary>
  117. Containment test between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingSphere"/>.
  118. </summary>
  119. <param name="sphere">A <see cref="T:CommonLang.Geometry.BoundingSphere"/> for testing.</param>
  120. <param name="result">Result of testing for containment between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.BoundingSphere"/> as an output parameter.</param>
  121. </member>
  122. <member name="M:CommonLang.Geometry.BoundingFrustum.Contains(CommonLang.Geometry.Vector3)">
  123. <summary>
  124. Containment test between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.Vector3"/>.
  125. </summary>
  126. <param name="point">A <see cref="T:CommonLang.Geometry.Vector3"/> for testing.</param>
  127. <returns>Result of testing for containment between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.Vector3"/>.</returns>
  128. </member>
  129. <member name="M:CommonLang.Geometry.BoundingFrustum.Contains(CommonLang.Geometry.Vector3@,CommonLang.Geometry.ContainmentType@)">
  130. <summary>
  131. Containment test between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.Vector3"/>.
  132. </summary>
  133. <param name="point">A <see cref="T:CommonLang.Geometry.Vector3"/> for testing.</param>
  134. <param name="result">Result of testing for containment between this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> and specified <see cref="T:CommonLang.Geometry.Vector3"/> as an output parameter.</param>
  135. </member>
  136. <member name="M:CommonLang.Geometry.BoundingFrustum.Equals(CommonLang.Geometry.BoundingFrustum)">
  137. <summary>
  138. Compares whether current instance is equal to specified <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  139. </summary>
  140. <param name="other">The <see cref="T:CommonLang.Geometry.BoundingFrustum"/> to compare.</param>
  141. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  142. </member>
  143. <member name="M:CommonLang.Geometry.BoundingFrustum.Equals(System.Object)">
  144. <summary>
  145. Compares whether current instance is equal to specified <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  146. </summary>
  147. <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
  148. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  149. </member>
  150. <member name="M:CommonLang.Geometry.BoundingFrustum.GetCorners">
  151. <summary>
  152. Returns a copy of internal corners array.
  153. </summary>
  154. <returns>The array of corners.</returns>
  155. </member>
  156. <member name="M:CommonLang.Geometry.BoundingFrustum.GetCorners(CommonLang.Geometry.Vector3[])">
  157. <summary>
  158. Returns a copy of internal corners array.
  159. </summary>
  160. <param name="corners">The array which values will be replaced to corner values of this instance. It must have size of <see cref="F:CommonLang.Geometry.BoundingFrustum.CornerCount"/>.</param>
  161. </member>
  162. <member name="M:CommonLang.Geometry.BoundingFrustum.GetHashCode">
  163. <summary>
  164. Gets the hash code of this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  165. </summary>
  166. <returns>Hash code of this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.</returns>
  167. </member>
  168. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.BoundingBox)">
  169. <summary>
  170. Gets whether or not a specified <see cref="T:CommonLang.Geometry.BoundingBox"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  171. </summary>
  172. <param name="box">A <see cref="T:CommonLang.Geometry.BoundingBox"/> for intersection test.</param>
  173. <returns><c>true</c> if specified <see cref="T:CommonLang.Geometry.BoundingBox"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>; <c>false</c> otherwise.</returns>
  174. </member>
  175. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.BoundingBox@,System.Boolean@)">
  176. <summary>
  177. Gets whether or not a specified <see cref="T:CommonLang.Geometry.BoundingBox"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  178. </summary>
  179. <param name="box">A <see cref="T:CommonLang.Geometry.BoundingBox"/> for intersection test.</param>
  180. <param name="result"><c>true</c> if specified <see cref="T:CommonLang.Geometry.BoundingBox"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>; <c>false</c> otherwise as an output parameter.</param>
  181. </member>
  182. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.BoundingFrustum)">
  183. <summary>
  184. Gets whether or not a specified <see cref="T:CommonLang.Geometry.BoundingFrustum"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  185. </summary>
  186. <param name="frustum">An other <see cref="T:CommonLang.Geometry.BoundingFrustum"/> for intersection test.</param>
  187. <returns><c>true</c> if other <see cref="T:CommonLang.Geometry.BoundingFrustum"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>; <c>false</c> otherwise.</returns>
  188. </member>
  189. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.BoundingSphere)">
  190. <summary>
  191. Gets whether or not a specified <see cref="T:CommonLang.Geometry.BoundingSphere"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  192. </summary>
  193. <param name="sphere">A <see cref="T:CommonLang.Geometry.BoundingSphere"/> for intersection test.</param>
  194. <returns><c>true</c> if specified <see cref="T:CommonLang.Geometry.BoundingSphere"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>; <c>false</c> otherwise.</returns>
  195. </member>
  196. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.BoundingSphere@,System.Boolean@)">
  197. <summary>
  198. Gets whether or not a specified <see cref="T:CommonLang.Geometry.BoundingSphere"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  199. </summary>
  200. <param name="sphere">A <see cref="T:CommonLang.Geometry.BoundingSphere"/> for intersection test.</param>
  201. <param name="result"><c>true</c> if specified <see cref="T:CommonLang.Geometry.BoundingSphere"/> intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>; <c>false</c> otherwise as an output parameter.</param>
  202. </member>
  203. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.Plane)">
  204. <summary>
  205. Gets type of intersection between specified <see cref="T:CommonLang.Geometry.Plane"/> and this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  206. </summary>
  207. <param name="plane">A <see cref="T:CommonLang.Geometry.Plane"/> for intersection test.</param>
  208. <returns>A plane intersection type.</returns>
  209. </member>
  210. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.Plane@,CommonLang.Geometry.PlaneIntersectionType@)">
  211. <summary>
  212. Gets type of intersection between specified <see cref="T:CommonLang.Geometry.Plane"/> and this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.
  213. </summary>
  214. <param name="plane">A <see cref="T:CommonLang.Geometry.Plane"/> for intersection test.</param>
  215. <param name="result">A plane intersection type as an output parameter.</param>
  216. </member>
  217. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.Ray)">
  218. <summary>
  219. Gets the distance of intersection of <see cref="T:CommonLang.Geometry.Ray"/> and this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> or null if no intersection happens.
  220. </summary>
  221. <param name="ray">A <see cref="T:CommonLang.Geometry.Ray"/> for intersection test.</param>
  222. <returns>Distance at which ray intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> or null if no intersection happens.</returns>
  223. </member>
  224. <member name="M:CommonLang.Geometry.BoundingFrustum.Intersects(CommonLang.Geometry.Ray@,System.Nullable{System.Single}@)">
  225. <summary>
  226. Gets the distance of intersection of <see cref="T:CommonLang.Geometry.Ray"/> and this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> or null if no intersection happens.
  227. </summary>
  228. <param name="ray">A <see cref="T:CommonLang.Geometry.Ray"/> for intersection test.</param>
  229. <param name="result">Distance at which ray intersects with this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> or null if no intersection happens as an output parameter.</param>
  230. </member>
  231. <member name="M:CommonLang.Geometry.BoundingFrustum.ToString">
  232. <summary>
  233. Returns a <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.BoundingFrustum"/> in the format:
  234. {Near:[nearPlane] Far:[farPlane] Left:[leftPlane] Right:[rightPlane] Top:[topPlane] Bottom:[bottomPlane]}
  235. </summary>
  236. <returns><see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.BoundingFrustum"/>.</returns>
  237. </member>
  238. <member name="T:CommonLang.Geometry.CollisionMath">
  239. <summary>
  240. A code container for collision-related mathematical functions.
  241. </summary>
  242. </member>
  243. <member name="T:CommonLang.Geometry.CollisionMath.CircleLineCollisionResult">
  244. <summary>
  245. Data defining a circle/line collision result.
  246. </summary>
  247. <remarks>Also used for circle/rectangles.</remarks>
  248. </member>
  249. <member name="M:CommonLang.Geometry.CollisionMath.CircleCircleIntersect(CommonLang.Geometry.Vector2,System.Single,CommonLang.Geometry.Vector2,System.Single)">
  250. <summary>
  251. Determine if two circles intersect or contain each other.
  252. </summary>
  253. <param name="center1">The center of the first circle.</param>
  254. <param name="radius1">The radius of the first circle.</param>
  255. <param name="center2">The center of the second circle.</param>
  256. <param name="radius2">The radius of the second circle.</param>
  257. <returns>True if the circles intersect or contain one another.</returns>
  258. </member>
  259. <member name="M:CommonLang.Geometry.CollisionMath.LineLineIntersect(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2@)">
  260. <summary>
  261. Determines the point of intersection between two line segments,
  262. as defined by four points.
  263. </summary>
  264. <param name="a">The first point on the first line segment.</param>
  265. <param name="b">The second point on the first line segment.</param>
  266. <param name="c">The first point on the second line segment.</param>
  267. <param name="d">The second point on the second line segment.</param>
  268. <param name="point">The output value with the interesection, if any.</param>
  269. <remarks>The output parameter "point" is only valid
  270. when the return value is true.</remarks>
  271. <returns>True if intersecting, false otherwise.</returns>
  272. </member>
  273. <member name="M:CommonLang.Geometry.CollisionMath.CircleLineCollide(CommonLang.Geometry.Vector2,System.Single,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.CollisionMath.CircleLineCollisionResult@)">
  274. <summary>
  275. Determines if a circle and line segment intersect, and if so, how they do.
  276. </summary>
  277. <param name="center">The center of the circle.</param>
  278. <param name="radius">The radius of the circle.</param>
  279. <param name="lineStart">The first point on the line segment.</param>
  280. <param name="lineEnd">The second point on the line segment.</param>
  281. <param name="result">The result data for the collision.</param>
  282. <returns>True if a collision occurs, provided for convenience.</returns>
  283. </member>
  284. <member name="M:CommonLang.Geometry.CollisionMath.PointInPolygon(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2[])">
  285. <summary>
  286. 点在凸多边形内部。
  287. </summary>
  288. <param name="center"></param>
  289. <param name="list"></param>
  290. <returns></returns>
  291. </member>
  292. <member name="T:CommonLang.Geometry.ContainmentType">
  293. <summary>
  294. Defines how the bounding volumes intersects or contain one another.
  295. </summary>
  296. </member>
  297. <member name="F:CommonLang.Geometry.ContainmentType.Disjoint">
  298. <summary>
  299. Indicates that there is no overlap between two bounding volumes.
  300. </summary>
  301. </member>
  302. <member name="F:CommonLang.Geometry.ContainmentType.Contains">
  303. <summary>
  304. Indicates that one bounding volume completely contains another volume.
  305. </summary>
  306. </member>
  307. <member name="F:CommonLang.Geometry.ContainmentType.Intersects">
  308. <summary>
  309. Indicates that bounding volumes partially overlap one another.
  310. </summary>
  311. </member>
  312. <member name="T:CommonLang.Geometry.Curve">
  313. <summary>
  314. Contains a collection of <see cref="T:CommonLang.Geometry.CurveKey"/> points in 2D space and provides methods for evaluating features of the curve they define.
  315. </summary>
  316. </member>
  317. <member name="P:CommonLang.Geometry.Curve.IsConstant">
  318. <summary>
  319. Returns <c>true</c> if this curve is constant (has zero or one points); <c>false</c> otherwise.
  320. </summary>
  321. </member>
  322. <member name="P:CommonLang.Geometry.Curve.Keys">
  323. <summary>
  324. The collection of curve keys.
  325. </summary>
  326. </member>
  327. <member name="P:CommonLang.Geometry.Curve.PostLoop">
  328. <summary>
  329. Defines how to handle weighting values that are greater than the last control point in the curve.
  330. </summary>
  331. </member>
  332. <member name="P:CommonLang.Geometry.Curve.PreLoop">
  333. <summary>
  334. Defines how to handle weighting values that are less than the first control point in the curve.
  335. </summary>
  336. </member>
  337. <member name="M:CommonLang.Geometry.Curve.#ctor">
  338. <summary>
  339. Constructs a curve.
  340. </summary>
  341. </member>
  342. <member name="M:CommonLang.Geometry.Curve.Clone">
  343. <summary>
  344. Creates a copy of this curve.
  345. </summary>
  346. <returns>A copy of this curve.</returns>
  347. </member>
  348. <member name="M:CommonLang.Geometry.Curve.Evaluate(System.Single)">
  349. <summary>
  350. Evaluate the value at a position of this <see cref="T:CommonLang.Geometry.Curve"/>.
  351. </summary>
  352. <param name="position">The position on this <see cref="T:CommonLang.Geometry.Curve"/>.</param>
  353. <returns>Value at the position on this <see cref="T:CommonLang.Geometry.Curve"/>.</returns>
  354. </member>
  355. <member name="M:CommonLang.Geometry.Curve.ComputeTangents(CommonLang.Geometry.CurveTangent)">
  356. <summary>
  357. Computes tangents for all keys in the collection.
  358. </summary>
  359. <param name="tangentType">The tangent type for both in and out.</param>
  360. </member>
  361. <member name="M:CommonLang.Geometry.Curve.ComputeTangents(CommonLang.Geometry.CurveTangent,CommonLang.Geometry.CurveTangent)">
  362. <summary>
  363. Computes tangents for all keys in the collection.
  364. </summary>
  365. <param name="tangentInType">The tangent in-type. <see cref="P:CommonLang.Geometry.CurveKey.TangentIn"/> for more details.</param>
  366. <param name="tangentOutType">The tangent out-type. <see cref="P:CommonLang.Geometry.CurveKey.TangentOut"/> for more details.</param>
  367. </member>
  368. <member name="M:CommonLang.Geometry.Curve.ComputeTangent(System.Int32,CommonLang.Geometry.CurveTangent)">
  369. <summary>
  370. Computes tangent for the specific key in the collection.
  371. </summary>
  372. <param name="keyIndex">The index of a key in the collection.</param>
  373. <param name="tangentType">The tangent type for both in and out.</param>
  374. </member>
  375. <member name="M:CommonLang.Geometry.Curve.ComputeTangent(System.Int32,CommonLang.Geometry.CurveTangent,CommonLang.Geometry.CurveTangent)">
  376. <summary>
  377. Computes tangent for the specific key in the collection.
  378. </summary>
  379. <param name="keyIndex">The index of key in the collection.</param>
  380. <param name="tangentInType">The tangent in-type. <see cref="P:CommonLang.Geometry.CurveKey.TangentIn"/> for more details.</param>
  381. <param name="tangentOutType">The tangent out-type. <see cref="P:CommonLang.Geometry.CurveKey.TangentOut"/> for more details.</param>
  382. </member>
  383. <member name="T:CommonLang.Geometry.CurveContinuity">
  384. <summary>
  385. Defines the continuity of keys on a <see cref="T:CommonLang.Geometry.Curve"/>.
  386. </summary>
  387. </member>
  388. <member name="F:CommonLang.Geometry.CurveContinuity.Smooth">
  389. <summary>
  390. Interpolation can be used between this key and the next.
  391. </summary>
  392. </member>
  393. <member name="F:CommonLang.Geometry.CurveContinuity.Step">
  394. <summary>
  395. Interpolation cannot be used. A position between the two points returns this point.
  396. </summary>
  397. </member>
  398. <member name="T:CommonLang.Geometry.CurveKey">
  399. <summary>
  400. Key point on the <see cref="T:CommonLang.Geometry.Curve"/>.
  401. </summary>
  402. </member>
  403. <member name="P:CommonLang.Geometry.CurveKey.Continuity">
  404. <summary>
  405. Gets or sets the indicator whether the segment between this point and the next point on the curve is discrete or continuous.
  406. </summary>
  407. </member>
  408. <member name="P:CommonLang.Geometry.CurveKey.Position">
  409. <summary>
  410. Gets a position of the key on the curve.
  411. </summary>
  412. </member>
  413. <member name="P:CommonLang.Geometry.CurveKey.TangentIn">
  414. <summary>
  415. Gets or sets a tangent when approaching this point from the previous point on the curve.
  416. </summary>
  417. </member>
  418. <member name="P:CommonLang.Geometry.CurveKey.TangentOut">
  419. <summary>
  420. Gets or sets a tangent when leaving this point to the next point on the curve.
  421. </summary>
  422. </member>
  423. <member name="P:CommonLang.Geometry.CurveKey.Value">
  424. <summary>
  425. Gets a value of this point.
  426. </summary>
  427. </member>
  428. <member name="M:CommonLang.Geometry.CurveKey.#ctor">
  429. <summary>
  430. Creates a new instance of <see cref="T:CommonLang.Geometry.CurveKey"/> class with position: 0 and value: 0.
  431. </summary>
  432. </member>
  433. <member name="M:CommonLang.Geometry.CurveKey.#ctor(System.Single,System.Single)">
  434. <summary>
  435. Creates a new instance of <see cref="T:CommonLang.Geometry.CurveKey"/> class.
  436. </summary>
  437. <param name="position">Position on the curve.</param>
  438. <param name="value">Value of the control point.</param>
  439. </member>
  440. <member name="M:CommonLang.Geometry.CurveKey.#ctor(System.Single,System.Single,System.Single,System.Single)">
  441. <summary>
  442. Creates a new instance of <see cref="T:CommonLang.Geometry.CurveKey"/> class.
  443. </summary>
  444. <param name="position">Position on the curve.</param>
  445. <param name="value">Value of the control point.</param>
  446. <param name="tangentIn">Tangent approaching point from the previous point on the curve.</param>
  447. <param name="tangentOut">Tangent leaving point toward next point on the curve.</param>
  448. </member>
  449. <member name="M:CommonLang.Geometry.CurveKey.#ctor(System.Single,System.Single,System.Single,System.Single,CommonLang.Geometry.CurveContinuity)">
  450. <summary>
  451. Creates a new instance of <see cref="T:CommonLang.Geometry.CurveKey"/> class.
  452. </summary>
  453. <param name="position">Position on the curve.</param>
  454. <param name="value">Value of the control point.</param>
  455. <param name="tangentIn">Tangent approaching point from the previous point on the curve.</param>
  456. <param name="tangentOut">Tangent leaving point toward next point on the curve.</param>
  457. <param name="continuity">Indicates whether the curve is discrete or continuous.</param>
  458. </member>
  459. <member name="M:CommonLang.Geometry.CurveKey.op_Inequality(CommonLang.Geometry.CurveKey,CommonLang.Geometry.CurveKey)">
  460. <summary>
  461. Compares whether two <see cref="T:CommonLang.Geometry.CurveKey"/> instances are not equal.
  462. </summary>
  463. <param name="value1"><see cref="T:CommonLang.Geometry.CurveKey"/> instance on the left of the not equal sign.</param>
  464. <param name="value2"><see cref="T:CommonLang.Geometry.CurveKey"/> instance on the right of the not equal sign.</param>
  465. <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  466. </member>
  467. <member name="M:CommonLang.Geometry.CurveKey.op_Equality(CommonLang.Geometry.CurveKey,CommonLang.Geometry.CurveKey)">
  468. <summary>
  469. Compares whether two <see cref="T:CommonLang.Geometry.CurveKey"/> instances are equal.
  470. </summary>
  471. <param name="value1"><see cref="T:CommonLang.Geometry.CurveKey"/> instance on the left of the equal sign.</param>
  472. <param name="value2"><see cref="T:CommonLang.Geometry.CurveKey"/> instance on the right of the equal sign.</param>
  473. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  474. </member>
  475. <member name="M:CommonLang.Geometry.CurveKey.Clone">
  476. <summary>
  477. Creates a copy of this key.
  478. </summary>
  479. <returns>A copy of this key.</returns>
  480. </member>
  481. <member name="T:CommonLang.Geometry.CurveKeyCollection">
  482. <summary>
  483. The collection of the <see cref="T:CommonLang.Geometry.CurveKey"/> elements and a part of the <see cref="T:CommonLang.Geometry.Curve"/> class.
  484. </summary>
  485. </member>
  486. <member name="P:CommonLang.Geometry.CurveKeyCollection.Item(System.Int32)">
  487. <summary>
  488. Indexer.
  489. </summary>
  490. <param name="index">The index of key in this collection.</param>
  491. <returns><see cref="T:CommonLang.Geometry.CurveKey"/> at <paramref name="index"/> position.</returns>
  492. </member>
  493. <member name="P:CommonLang.Geometry.CurveKeyCollection.Count">
  494. <summary>
  495. Returns the count of keys in this collection.
  496. </summary>
  497. </member>
  498. <member name="P:CommonLang.Geometry.CurveKeyCollection.IsReadOnly">
  499. <summary>
  500. Returns false because it is not a read-only collection.
  501. </summary>
  502. </member>
  503. <member name="M:CommonLang.Geometry.CurveKeyCollection.#ctor">
  504. <summary>
  505. Creates a new instance of <see cref="T:CommonLang.Geometry.CurveKeyCollection"/> class.
  506. </summary>
  507. </member>
  508. <member name="M:CommonLang.Geometry.CurveKeyCollection.Add(CommonLang.Geometry.CurveKey)">
  509. <summary>
  510. Adds a key to this collection.
  511. </summary>
  512. <param name="item">New key for the collection.</param>
  513. <exception cref="T:System.ArgumentNullException">Throws if <paramref name="item"/> is null.</exception>
  514. <remarks>The new key would be added respectively to a position of that key and the position of other keys.</remarks>
  515. </member>
  516. <member name="M:CommonLang.Geometry.CurveKeyCollection.Clear">
  517. <summary>
  518. Removes all keys from this collection.
  519. </summary>
  520. </member>
  521. <member name="M:CommonLang.Geometry.CurveKeyCollection.Clone">
  522. <summary>
  523. Creates a copy of this collection.
  524. </summary>
  525. <returns>A copy of this collection.</returns>
  526. </member>
  527. <member name="M:CommonLang.Geometry.CurveKeyCollection.Contains(CommonLang.Geometry.CurveKey)">
  528. <summary>
  529. Determines whether this collection contains a specific key.
  530. </summary>
  531. <param name="item">The key to locate in this collection.</param>
  532. <returns><c>true</c> if the key is found; <c>false</c> otherwise.</returns>
  533. </member>
  534. <member name="M:CommonLang.Geometry.CurveKeyCollection.CopyTo(CommonLang.Geometry.CurveKey[],System.Int32)">
  535. <summary>
  536. Copies the keys of this collection to an array, starting at the array index provided.
  537. </summary>
  538. <param name="array">Destination array where elements will be copied.</param>
  539. <param name="arrayIndex">The zero-based index in the array to start copying from.</param>
  540. </member>
  541. <member name="M:CommonLang.Geometry.CurveKeyCollection.GetEnumerator">
  542. <summary>
  543. Returns an enumerator that iterates through the collection.
  544. </summary>
  545. <returns>An enumerator for the <see cref="T:CommonLang.Geometry.CurveKeyCollection"/>.</returns>
  546. </member>
  547. <member name="M:CommonLang.Geometry.CurveKeyCollection.IndexOf(CommonLang.Geometry.CurveKey)">
  548. <summary>
  549. Finds element in the collection and returns its index.
  550. </summary>
  551. <param name="item">Element for the search.</param>
  552. <returns>Index of the element; or -1 if item is not found.</returns>
  553. </member>
  554. <member name="M:CommonLang.Geometry.CurveKeyCollection.RemoveAt(System.Int32)">
  555. <summary>
  556. Removes element at the specified index.
  557. </summary>
  558. <param name="index">The index which element will be removed.</param>
  559. </member>
  560. <member name="M:CommonLang.Geometry.CurveKeyCollection.Remove(CommonLang.Geometry.CurveKey)">
  561. <summary>
  562. Removes specific element.
  563. </summary>
  564. <param name="item">The element</param>
  565. <returns><c>true</c> if item is successfully removed; <c>false</c> otherwise. This method also returns <c>false</c> if item was not found.</returns>
  566. </member>
  567. <member name="T:CommonLang.Geometry.CurveLoopType">
  568. <summary>
  569. Defines how the <see cref="T:CommonLang.Geometry.Curve"/> value is determined for position before first point or after the end point on the <see cref="T:CommonLang.Geometry.Curve"/>.
  570. </summary>
  571. </member>
  572. <member name="F:CommonLang.Geometry.CurveLoopType.Constant">
  573. <summary>
  574. The value of <see cref="T:CommonLang.Geometry.Curve"/> will be evaluated as first point for positions before the beginning and end point for positions after the end.
  575. </summary>
  576. </member>
  577. <member name="F:CommonLang.Geometry.CurveLoopType.Cycle">
  578. <summary>
  579. The positions will wrap around from the end to beginning of the <see cref="T:CommonLang.Geometry.Curve"/> for determined the value.
  580. </summary>
  581. </member>
  582. <member name="F:CommonLang.Geometry.CurveLoopType.CycleOffset">
  583. <summary>
  584. The positions will wrap around from the end to beginning of the <see cref="T:CommonLang.Geometry.Curve"/>.
  585. The value will be offset by the difference between the values of first and end <see cref="T:CommonLang.Geometry.CurveKey"/> multiplied by the wrap amount.
  586. If the position is before the beginning of the <see cref="T:CommonLang.Geometry.Curve"/> the difference will be subtracted from its value; otherwise the difference will be added.
  587. </summary>
  588. </member>
  589. <member name="F:CommonLang.Geometry.CurveLoopType.Oscillate">
  590. <summary>
  591. The value at the end of the <see cref="T:CommonLang.Geometry.Curve"/> act as an offset from the same side of the <see cref="T:CommonLang.Geometry.Curve"/> toward the opposite side.
  592. </summary>
  593. </member>
  594. <member name="F:CommonLang.Geometry.CurveLoopType.Linear">
  595. <summary>
  596. The linear interpolation will be performed for determined the value.
  597. </summary>
  598. </member>
  599. <member name="T:CommonLang.Geometry.CurveTangent">
  600. <summary>
  601. Defines the different tangent types to be calculated for <see cref="T:CommonLang.Geometry.CurveKey"/> points in a <see cref="T:CommonLang.Geometry.Curve"/>.
  602. </summary>
  603. </member>
  604. <member name="F:CommonLang.Geometry.CurveTangent.Flat">
  605. <summary>
  606. The tangent which always has a value equal to zero.
  607. </summary>
  608. </member>
  609. <member name="F:CommonLang.Geometry.CurveTangent.Linear">
  610. <summary>
  611. The tangent which contains a difference between current tangent value and the tangent value from the previous <see cref="T:CommonLang.Geometry.CurveKey"/>.
  612. </summary>
  613. </member>
  614. <member name="F:CommonLang.Geometry.CurveTangent.Smooth">
  615. <summary>
  616. The smoouth tangent which contains the inflection between <see cref="P:CommonLang.Geometry.CurveKey.TangentIn"/> and <see cref="P:CommonLang.Geometry.CurveKey.TangentOut"/> by taking into account the values of both neighbors of the <see cref="T:CommonLang.Geometry.CurveKey"/>.
  617. </summary>
  618. </member>
  619. <member name="P:CommonLang.Geometry.SceneGraph2D.DisplayNode.Color">
  620. <summary>
  621. Color RGB
  622. </summary>
  623. </member>
  624. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.TransformLocalToParent(CommonLang.Geometry.Vector2[])">
  625. <summary>
  626. 本地坐标转换为父节点坐标
  627. </summary>
  628. </member>
  629. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.TransformParentToLocal(CommonLang.Geometry.Vector2[])">
  630. <summary>
  631. 父节点坐标转换为本地坐标
  632. </summary>
  633. </member>
  634. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.TransformRootToLocal(CommonLang.Geometry.Vector2[])">
  635. <summary>
  636. 屏幕坐标转换为本地坐标
  637. </summary>
  638. </member>
  639. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.TransformLocalToRoot(CommonLang.Geometry.Vector2[])">
  640. <summary>
  641. 本地坐标转换为屏幕坐标
  642. </summary>
  643. </member>
  644. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.GetChildren(System.Collections.Generic.List{CommonLang.Geometry.SceneGraph2D.DisplayNode},System.Boolean)">
  645. <summary>
  646. 获取所有节点
  647. </summary>
  648. <param name="list"></param>
  649. <param name="recursion"></param>
  650. </member>
  651. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.SceneGraphTreePath(System.Collections.Generic.List{CommonLang.Geometry.SceneGraph2D.DisplayNode})">
  652. <summary>
  653. 获取场景数路径,从当前节点一直到根节点
  654. </summary>
  655. </member>
  656. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.ForEachChildren(System.Predicate{CommonLang.Geometry.SceneGraph2D.DisplayNode},System.Boolean)">
  657. <summary>
  658. 遍历所有节点
  659. </summary>
  660. <param name="action">return true for break</param>
  661. <param name="recursion"></param>
  662. </member>
  663. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.OnDrawBegin(CommonLang.Geometry.SceneGraph2D.IGraphics)">
  664. <summary>
  665. 子节点前渲染
  666. </summary>
  667. <param name="g"></param>
  668. </member>
  669. <member name="M:CommonLang.Geometry.SceneGraph2D.DisplayNode.OnDrawAfter(CommonLang.Geometry.SceneGraph2D.IGraphics)">
  670. <summary>
  671. 子节点后渲染
  672. </summary>
  673. <param name="g"></param>
  674. </member>
  675. <member name="T:CommonLang.Geometry.MathHelper">
  676. <summary>
  677. Contains commonly used precalculated values and mathematical operations.
  678. </summary>
  679. </member>
  680. <member name="F:CommonLang.Geometry.MathHelper.E">
  681. <summary>
  682. Represents the mathematical constant e(2.71828175).
  683. </summary>
  684. </member>
  685. <member name="F:CommonLang.Geometry.MathHelper.Log10E">
  686. <summary>
  687. Represents the log base ten of e(0.4342945).
  688. </summary>
  689. </member>
  690. <member name="F:CommonLang.Geometry.MathHelper.Log2E">
  691. <summary>
  692. Represents the log base two of e(1.442695).
  693. </summary>
  694. </member>
  695. <member name="F:CommonLang.Geometry.MathHelper.Pi">
  696. <summary>
  697. Represents the value of pi(3.14159274).
  698. </summary>
  699. </member>
  700. <member name="F:CommonLang.Geometry.MathHelper.PiOver2">
  701. <summary>
  702. Represents the value of pi divided by two(1.57079637).
  703. </summary>
  704. </member>
  705. <member name="F:CommonLang.Geometry.MathHelper.PiOver4">
  706. <summary>
  707. Represents the value of pi divided by four(0.7853982).
  708. </summary>
  709. </member>
  710. <member name="F:CommonLang.Geometry.MathHelper.TwoPi">
  711. <summary>
  712. Represents the value of pi times two(6.28318548).
  713. </summary>
  714. </member>
  715. <member name="M:CommonLang.Geometry.MathHelper.Barycentric(System.Single,System.Single,System.Single,System.Single,System.Single)">
  716. <summary>
  717. Returns the Cartesian coordinate for one axis of a point that is defined by a given triangle and two normalized barycentric (areal) coordinates.
  718. </summary>
  719. <param name="value1">The coordinate on one axis of vertex 1 of the defining triangle.</param>
  720. <param name="value2">The coordinate on the same axis of vertex 2 of the defining triangle.</param>
  721. <param name="value3">The coordinate on the same axis of vertex 3 of the defining triangle.</param>
  722. <param name="amount1">The normalized barycentric (areal) coordinate b2, equal to the weighting factor for vertex 2, the coordinate of which is specified in value2.</param>
  723. <param name="amount2">The normalized barycentric (areal) coordinate b3, equal to the weighting factor for vertex 3, the coordinate of which is specified in value3.</param>
  724. <returns>Cartesian coordinate of the specified point with respect to the axis being used.</returns>
  725. </member>
  726. <member name="M:CommonLang.Geometry.MathHelper.CatmullRom(System.Single,System.Single,System.Single,System.Single,System.Single)">
  727. <summary>
  728. Performs a Catmull-Rom interpolation using the specified positions.
  729. </summary>
  730. <param name="value1">The first position in the interpolation.</param>
  731. <param name="value2">The second position in the interpolation.</param>
  732. <param name="value3">The third position in the interpolation.</param>
  733. <param name="value4">The fourth position in the interpolation.</param>
  734. <param name="amount">Weighting factor.</param>
  735. <returns>A position that is the result of the Catmull-Rom interpolation.</returns>
  736. </member>
  737. <member name="M:CommonLang.Geometry.MathHelper.Clamp(System.Single,System.Single,System.Single)">
  738. <summary>
  739. Restricts a value to be within a specified range.
  740. </summary>
  741. <param name="value">The value to clamp.</param>
  742. <param name="min">The minimum value. If <c>value</c> is less than <c>min</c>, <c>min</c> will be returned.</param>
  743. <param name="max">The maximum value. If <c>value</c> is greater than <c>max</c>, <c>max</c> will be returned.</param>
  744. <returns>The clamped value.</returns>
  745. </member>
  746. <member name="M:CommonLang.Geometry.MathHelper.Clamp(System.Int32,System.Int32,System.Int32)">
  747. <summary>
  748. Restricts a value to be within a specified range.
  749. </summary>
  750. <param name="value">The value to clamp.</param>
  751. <param name="min">The minimum value. If <c>value</c> is less than <c>min</c>, <c>min</c> will be returned.</param>
  752. <param name="max">The maximum value. If <c>value</c> is greater than <c>max</c>, <c>max</c> will be returned.</param>
  753. <returns>The clamped value.</returns>
  754. </member>
  755. <member name="M:CommonLang.Geometry.MathHelper.Distance(System.Single,System.Single)">
  756. <summary>
  757. Calculates the absolute value of the difference of two values.
  758. </summary>
  759. <param name="value1">Source value.</param>
  760. <param name="value2">Source value.</param>
  761. <returns>Distance between the two values.</returns>
  762. </member>
  763. <member name="M:CommonLang.Geometry.MathHelper.Hermite(System.Single,System.Single,System.Single,System.Single,System.Single)">
  764. <summary>
  765. Performs a Hermite spline interpolation.
  766. </summary>
  767. <param name="value1">Source position.</param>
  768. <param name="tangent1">Source tangent.</param>
  769. <param name="value2">Source position.</param>
  770. <param name="tangent2">Source tangent.</param>
  771. <param name="amount">Weighting factor.</param>
  772. <returns>The result of the Hermite spline interpolation.</returns>
  773. </member>
  774. <member name="M:CommonLang.Geometry.MathHelper.Lerp(System.Single,System.Single,System.Single)">
  775. <summary>
  776. Linearly interpolates between two values.
  777. </summary>
  778. <param name="value1">Source value.</param>
  779. <param name="value2">Source value.</param>
  780. <param name="amount">Value between 0 and 1 indicating the weight of value2.</param>
  781. <returns>Interpolated value.</returns>
  782. <remarks>This method performs the linear interpolation based on the following formula.
  783. <c>value1 + (value2 - value1) * amount</c>
  784. Passing amount a value of 0 will cause value1 to be returned, a value of 1 will cause value2 to be returned.
  785. </remarks>
  786. </member>
  787. <member name="M:CommonLang.Geometry.MathHelper.Max(System.Single,System.Single)">
  788. <summary>
  789. Returns the greater of two values.
  790. </summary>
  791. <param name="value1">Source value.</param>
  792. <param name="value2">Source value.</param>
  793. <returns>The greater value.</returns>
  794. </member>
  795. <member name="M:CommonLang.Geometry.MathHelper.Max(System.Int32,System.Int32)">
  796. <summary>
  797. Returns the greater of two values.
  798. </summary>
  799. <param name="value1">Source value.</param>
  800. <param name="value2">Source value.</param>
  801. <returns>The greater value.</returns>
  802. </member>
  803. <member name="M:CommonLang.Geometry.MathHelper.Min(System.Single,System.Single)">
  804. <summary>
  805. Returns the lesser of two values.
  806. </summary>
  807. <param name="value1">Source value.</param>
  808. <param name="value2">Source value.</param>
  809. <returns>The lesser value.</returns>
  810. </member>
  811. <member name="M:CommonLang.Geometry.MathHelper.Min(System.Int32,System.Int32)">
  812. <summary>
  813. Returns the lesser of two values.
  814. </summary>
  815. <param name="value1">Source value.</param>
  816. <param name="value2">Source value.</param>
  817. <returns>The lesser value.</returns>
  818. </member>
  819. <member name="M:CommonLang.Geometry.MathHelper.SmoothStep(System.Single,System.Single,System.Single)">
  820. <summary>
  821. Interpolates between two values using a cubic equation.
  822. </summary>
  823. <param name="value1">Source value.</param>
  824. <param name="value2">Source value.</param>
  825. <param name="amount">Weighting value.</param>
  826. <returns>Interpolated value.</returns>
  827. </member>
  828. <member name="M:CommonLang.Geometry.MathHelper.ToDegrees(System.Single)">
  829. <summary>
  830. Converts radians to degrees.
  831. </summary>
  832. <param name="radians">The angle in radians.</param>
  833. <returns>The angle in degrees.</returns>
  834. <remarks>
  835. This method uses double precission internally,
  836. though it returns single float
  837. Factor = 180 / pi
  838. </remarks>
  839. </member>
  840. <member name="M:CommonLang.Geometry.MathHelper.ToRadians(System.Single)">
  841. <summary>
  842. Converts degrees to radians.
  843. </summary>
  844. <param name="degrees">The angle in degrees.</param>
  845. <returns>The angle in radians.</returns>
  846. <remarks>
  847. This method uses double precission internally,
  848. though it returns single float
  849. Factor = pi / 180
  850. </remarks>
  851. </member>
  852. <member name="M:CommonLang.Geometry.MathHelper.WrapAngle(System.Single)">
  853. <summary>
  854. Reduces a given angle to a value between π and -π.
  855. </summary>
  856. <param name="angle">The angle to reduce, in radians.</param>
  857. <returns>The new angle, in radians.</returns>
  858. </member>
  859. <member name="M:CommonLang.Geometry.MathHelper.IsPowerOfTwo(System.Int32)">
  860. <summary>
  861. Determines if value is powered by two.
  862. </summary>
  863. <param name="value">A value.</param>
  864. <returns><c>true</c> if <c>value</c> is powered by two; otherwise <c>false</c>.</returns>
  865. </member>
  866. <member name="T:CommonLang.Geometry.Matrix">
  867. <summary>
  868. Represents the right-handed 4x4 floating point matrix, which can store translation, scale and rotation information.
  869. </summary>
  870. </member>
  871. <member name="M:CommonLang.Geometry.Matrix.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  872. <summary>
  873. Constructs a matrix.
  874. </summary>
  875. <param name="m11">A first row and first column value.</param>
  876. <param name="m12">A first row and second column value.</param>
  877. <param name="m13">A first row and third column value.</param>
  878. <param name="m14">A first row and fourth column value.</param>
  879. <param name="m21">A second row and first column value.</param>
  880. <param name="m22">A second row and second column value.</param>
  881. <param name="m23">A second row and third column value.</param>
  882. <param name="m24">A second row and fourth column value.</param>
  883. <param name="m31">A third row and first column value.</param>
  884. <param name="m32">A third row and second column value.</param>
  885. <param name="m33">A third row and third column value.</param>
  886. <param name="m34">A third row and fourth column value.</param>
  887. <param name="m41">A fourth row and first column value.</param>
  888. <param name="m42">A fourth row and second column value.</param>
  889. <param name="m43">A fourth row and third column value.</param>
  890. <param name="m44">A fourth row and fourth column value.</param>
  891. </member>
  892. <member name="M:CommonLang.Geometry.Matrix.#ctor(CommonLang.Geometry.Vector4,CommonLang.Geometry.Vector4,CommonLang.Geometry.Vector4,CommonLang.Geometry.Vector4)">
  893. <summary>
  894. Constructs a matrix.
  895. </summary>
  896. <param name="row1">A first row of the created matrix.</param>
  897. <param name="row2">A second row of the created matrix.</param>
  898. <param name="row3">A third row of the created matrix.</param>
  899. <param name="row4">A fourth row of the created matrix.</param>
  900. </member>
  901. <member name="F:CommonLang.Geometry.Matrix.M11">
  902. <summary>
  903. A first row and first column value.
  904. </summary>
  905. </member>
  906. <member name="F:CommonLang.Geometry.Matrix.M12">
  907. <summary>
  908. A first row and second column value.
  909. </summary>
  910. </member>
  911. <member name="F:CommonLang.Geometry.Matrix.M13">
  912. <summary>
  913. A first row and third column value.
  914. </summary>
  915. </member>
  916. <member name="F:CommonLang.Geometry.Matrix.M14">
  917. <summary>
  918. A first row and fourth column value.
  919. </summary>
  920. </member>
  921. <member name="F:CommonLang.Geometry.Matrix.M21">
  922. <summary>
  923. A second row and first column value.
  924. </summary>
  925. </member>
  926. <member name="F:CommonLang.Geometry.Matrix.M22">
  927. <summary>
  928. A second row and second column value.
  929. </summary>
  930. </member>
  931. <member name="F:CommonLang.Geometry.Matrix.M23">
  932. <summary>
  933. A second row and third column value.
  934. </summary>
  935. </member>
  936. <member name="F:CommonLang.Geometry.Matrix.M24">
  937. <summary>
  938. A second row and fourth column value.
  939. </summary>
  940. </member>
  941. <member name="F:CommonLang.Geometry.Matrix.M31">
  942. <summary>
  943. A third row and first column value.
  944. </summary>
  945. </member>
  946. <member name="F:CommonLang.Geometry.Matrix.M32">
  947. <summary>
  948. A third row and second column value.
  949. </summary>
  950. </member>
  951. <member name="F:CommonLang.Geometry.Matrix.M33">
  952. <summary>
  953. A third row and third column value.
  954. </summary>
  955. </member>
  956. <member name="F:CommonLang.Geometry.Matrix.M34">
  957. <summary>
  958. A third row and fourth column value.
  959. </summary>
  960. </member>
  961. <member name="F:CommonLang.Geometry.Matrix.M41">
  962. <summary>
  963. A fourth row and first column value.
  964. </summary>
  965. </member>
  966. <member name="F:CommonLang.Geometry.Matrix.M42">
  967. <summary>
  968. A fourth row and second column value.
  969. </summary>
  970. </member>
  971. <member name="F:CommonLang.Geometry.Matrix.M43">
  972. <summary>
  973. A fourth row and third column value.
  974. </summary>
  975. </member>
  976. <member name="F:CommonLang.Geometry.Matrix.M44">
  977. <summary>
  978. A fourth row and fourth column value.
  979. </summary>
  980. </member>
  981. <member name="P:CommonLang.Geometry.Matrix.Backward">
  982. <summary>
  983. The backward vector formed from the third row M31, M32, M33 elements.
  984. </summary>
  985. </member>
  986. <member name="P:CommonLang.Geometry.Matrix.Down">
  987. <summary>
  988. The down vector formed from the second row -M21, -M22, -M23 elements.
  989. </summary>
  990. </member>
  991. <member name="P:CommonLang.Geometry.Matrix.Forward">
  992. <summary>
  993. The forward vector formed from the third row -M31, -M32, -M33 elements.
  994. </summary>
  995. </member>
  996. <member name="P:CommonLang.Geometry.Matrix.Identity">
  997. <summary>
  998. Returns the identity matrix.
  999. </summary>
  1000. </member>
  1001. <member name="P:CommonLang.Geometry.Matrix.Left">
  1002. <summary>
  1003. The left vector formed from the first row -M11, -M12, -M13 elements.
  1004. </summary>
  1005. </member>
  1006. <member name="P:CommonLang.Geometry.Matrix.Right">
  1007. <summary>
  1008. The right vector formed from the first row M11, M12, M13 elements.
  1009. </summary>
  1010. </member>
  1011. <member name="P:CommonLang.Geometry.Matrix.Rotation">
  1012. <summary>
  1013. Rotation stored in this matrix.
  1014. </summary>
  1015. </member>
  1016. <member name="P:CommonLang.Geometry.Matrix.Translation">
  1017. <summary>
  1018. Position stored in this matrix.
  1019. </summary>
  1020. </member>
  1021. <member name="P:CommonLang.Geometry.Matrix.Scale">
  1022. <summary>
  1023. Scale stored in this matrix.
  1024. </summary>
  1025. </member>
  1026. <member name="P:CommonLang.Geometry.Matrix.Up">
  1027. <summary>
  1028. The upper vector formed from the second row M21, M22, M23 elements.
  1029. </summary>
  1030. </member>
  1031. <member name="M:CommonLang.Geometry.Matrix.Add(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1032. <summary>
  1033. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> which contains sum of two matrixes.
  1034. </summary>
  1035. <param name="matrix1">The first matrix to add.</param>
  1036. <param name="matrix2">The second matrix to add.</param>
  1037. <returns>The result of the matrix addition.</returns>
  1038. </member>
  1039. <member name="M:CommonLang.Geometry.Matrix.Add(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@)">
  1040. <summary>
  1041. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> which contains sum of two matrixes.
  1042. </summary>
  1043. <param name="matrix1">The first matrix to add.</param>
  1044. <param name="matrix2">The second matrix to add.</param>
  1045. <param name="result">The result of the matrix addition as an output parameter.</param>
  1046. </member>
  1047. <member name="M:CommonLang.Geometry.Matrix.CreateBillboard(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,System.Nullable{CommonLang.Geometry.Vector3})">
  1048. <summary>
  1049. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> for spherical billboarding that rotates around specified object position.
  1050. </summary>
  1051. <param name="objectPosition">Position of billboard object. It will rotate around that vector.</param>
  1052. <param name="cameraPosition">The camera position.</param>
  1053. <param name="cameraUpVector">The camera up vector.</param>
  1054. <param name="cameraForwardVector">Optional camera forward vector.</param>
  1055. <returns>The <see cref="T:CommonLang.Geometry.Matrix"/> for spherical billboarding.</returns>
  1056. </member>
  1057. <member name="M:CommonLang.Geometry.Matrix.CreateBillboard(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Nullable{CommonLang.Geometry.Vector3},CommonLang.Geometry.Matrix@)">
  1058. <summary>
  1059. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> for spherical billboarding that rotates around specified object position.
  1060. </summary>
  1061. <param name="objectPosition">Position of billboard object. It will rotate around that vector.</param>
  1062. <param name="cameraPosition">The camera position.</param>
  1063. <param name="cameraUpVector">The camera up vector.</param>
  1064. <param name="cameraForwardVector">Optional camera forward vector.</param>
  1065. <param name="result">The <see cref="T:CommonLang.Geometry.Matrix"/> for spherical billboarding as an output parameter.</param>
  1066. </member>
  1067. <member name="M:CommonLang.Geometry.Matrix.CreateConstrainedBillboard(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,System.Nullable{CommonLang.Geometry.Vector3},System.Nullable{CommonLang.Geometry.Vector3})">
  1068. <summary>
  1069. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> for cylindrical billboarding that rotates around specified axis.
  1070. </summary>
  1071. <param name="objectPosition">Object position the billboard will rotate around.</param>
  1072. <param name="cameraPosition">Camera position.</param>
  1073. <param name="rotateAxis">Axis of billboard for rotation.</param>
  1074. <param name="cameraForwardVector">Optional camera forward vector.</param>
  1075. <param name="objectForwardVector">Optional object forward vector.</param>
  1076. <returns>The <see cref="T:CommonLang.Geometry.Matrix"/> for cylindrical billboarding.</returns>
  1077. </member>
  1078. <member name="M:CommonLang.Geometry.Matrix.CreateConstrainedBillboard(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Nullable{CommonLang.Geometry.Vector3},System.Nullable{CommonLang.Geometry.Vector3},CommonLang.Geometry.Matrix@)">
  1079. <summary>
  1080. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> for cylindrical billboarding that rotates around specified axis.
  1081. </summary>
  1082. <param name="objectPosition">Object position the billboard will rotate around.</param>
  1083. <param name="cameraPosition">Camera position.</param>
  1084. <param name="rotateAxis">Axis of billboard for rotation.</param>
  1085. <param name="cameraForwardVector">Optional camera forward vector.</param>
  1086. <param name="objectForwardVector">Optional object forward vector.</param>
  1087. <param name="result">The <see cref="T:CommonLang.Geometry.Matrix"/> for cylindrical billboarding as an output parameter.</param>
  1088. </member>
  1089. <member name="M:CommonLang.Geometry.Matrix.CreateFromAxisAngle(CommonLang.Geometry.Vector3,System.Single)">
  1090. <summary>
  1091. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> which contains the rotation moment around specified axis.
  1092. </summary>
  1093. <param name="axis">The axis of rotation.</param>
  1094. <param name="angle">The angle of rotation in radians.</param>
  1095. <returns>The rotation <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1096. </member>
  1097. <member name="M:CommonLang.Geometry.Matrix.CreateFromAxisAngle(CommonLang.Geometry.Vector3@,System.Single,CommonLang.Geometry.Matrix@)">
  1098. <summary>
  1099. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> which contains the rotation moment around specified axis.
  1100. </summary>
  1101. <param name="axis">The axis of rotation.</param>
  1102. <param name="angle">The angle of rotation in radians.</param>
  1103. <param name="result">The rotation <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1104. </member>
  1105. <member name="M:CommonLang.Geometry.Matrix.CreateFromQuaternion(CommonLang.Geometry.Quaternion)">
  1106. <summary>
  1107. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> from a <see cref="T:CommonLang.Geometry.Quaternion"/>.
  1108. </summary>
  1109. <param name="quaternion"><see cref="T:CommonLang.Geometry.Quaternion"/> of rotation moment.</param>
  1110. <returns>The rotation <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1111. </member>
  1112. <member name="M:CommonLang.Geometry.Matrix.CreateFromQuaternion(CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Matrix@)">
  1113. <summary>
  1114. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> from a <see cref="T:CommonLang.Geometry.Quaternion"/>.
  1115. </summary>
  1116. <param name="quaternion"><see cref="T:CommonLang.Geometry.Quaternion"/> of rotation moment.</param>
  1117. <param name="result">The rotation <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1118. </member>
  1119. <member name="M:CommonLang.Geometry.Matrix.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)">
  1120. <summary>
  1121. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> from the specified yaw, pitch and roll values.
  1122. </summary>
  1123. <param name="yaw">The yaw rotation value in radians.</param>
  1124. <param name="pitch">The pitch rotation value in radians.</param>
  1125. <param name="roll">The roll rotation value in radians.</param>
  1126. <returns>The rotation <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1127. <remarks>For more information about yaw, pitch and roll visit http://en.wikipedia.org/wiki/Euler_angles.
  1128. </remarks>
  1129. </member>
  1130. <member name="M:CommonLang.Geometry.Matrix.CreateFromYawPitchRoll(System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1131. <summary>
  1132. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> from the specified yaw, pitch and roll values.
  1133. </summary>
  1134. <param name="yaw">The yaw rotation value in radians.</param>
  1135. <param name="pitch">The pitch rotation value in radians.</param>
  1136. <param name="roll">The roll rotation value in radians.</param>
  1137. <param name="result">The rotation <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1138. <remarks>For more information about yaw, pitch and roll visit http://en.wikipedia.org/wiki/Euler_angles.
  1139. </remarks>
  1140. </member>
  1141. <member name="M:CommonLang.Geometry.Matrix.CreateLookAt(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  1142. <summary>
  1143. Creates a new viewing <see cref="T:CommonLang.Geometry.Matrix"/>.
  1144. </summary>
  1145. <param name="cameraPosition">Position of the camera.</param>
  1146. <param name="cameraTarget">Lookup vector of the camera.</param>
  1147. <param name="cameraUpVector">The direction of the upper edge of the camera.</param>
  1148. <returns>The viewing <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1149. </member>
  1150. <member name="M:CommonLang.Geometry.Matrix.CreateLookAt(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Matrix@)">
  1151. <summary>
  1152. Creates a new viewing <see cref="T:CommonLang.Geometry.Matrix"/>.
  1153. </summary>
  1154. <param name="cameraPosition">Position of the camera.</param>
  1155. <param name="cameraTarget">Lookup vector of the camera.</param>
  1156. <param name="cameraUpVector">The direction of the upper edge of the camera.</param>
  1157. <param name="result">The viewing <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1158. </member>
  1159. <member name="M:CommonLang.Geometry.Matrix.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)">
  1160. <summary>
  1161. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for orthographic view.
  1162. </summary>
  1163. <param name="width">Width of the viewing volume.</param>
  1164. <param name="height">Height of the viewing volume.</param>
  1165. <param name="zNearPlane">Depth of the near plane.</param>
  1166. <param name="zFarPlane">Depth of the far plane.</param>
  1167. <returns>The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for orthographic view.</returns>
  1168. </member>
  1169. <member name="M:CommonLang.Geometry.Matrix.CreateOrthographic(System.Single,System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1170. <summary>
  1171. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for orthographic view.
  1172. </summary>
  1173. <param name="width">Width of the viewing volume.</param>
  1174. <param name="height">Height of the viewing volume.</param>
  1175. <param name="zNearPlane">Depth of the near plane.</param>
  1176. <param name="zFarPlane">Depth of the far plane.</param>
  1177. <param name="result">The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for orthographic view as an output parameter.</param>
  1178. </member>
  1179. <member name="M:CommonLang.Geometry.Matrix.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  1180. <summary>
  1181. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized orthographic view.
  1182. </summary>
  1183. <param name="left">Lower x-value at the near plane.</param>
  1184. <param name="right">Upper x-value at the near plane.</param>
  1185. <param name="bottom">Lower y-coordinate at the near plane.</param>
  1186. <param name="top">Upper y-value at the near plane.</param>
  1187. <param name="zNearPlane">Depth of the near plane.</param>
  1188. <param name="zFarPlane">Depth of the far plane.</param>
  1189. <returns>The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized orthographic view.</returns>
  1190. </member>
  1191. <member name="M:CommonLang.Geometry.Matrix.CreateOrthographicOffCenter(CommonLang.Geometry.Rectangle,System.Single,System.Single)">
  1192. <summary>
  1193. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized orthographic view.
  1194. </summary>
  1195. <param name="viewingVolume">The viewing volume.</param>
  1196. <param name="zNearPlane">Depth of the near plane.</param>
  1197. <param name="zFarPlane">Depth of the far plane.</param>
  1198. <returns>The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized orthographic view.</returns>
  1199. </member>
  1200. <member name="M:CommonLang.Geometry.Matrix.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1201. <summary>
  1202. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized orthographic view.
  1203. </summary>
  1204. <param name="left">Lower x-value at the near plane.</param>
  1205. <param name="right">Upper x-value at the near plane.</param>
  1206. <param name="bottom">Lower y-coordinate at the near plane.</param>
  1207. <param name="top">Upper y-value at the near plane.</param>
  1208. <param name="zNearPlane">Depth of the near plane.</param>
  1209. <param name="zFarPlane">Depth of the far plane.</param>
  1210. <param name="result">The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized orthographic view as an output parameter.</param>
  1211. </member>
  1212. <member name="M:CommonLang.Geometry.Matrix.CreatePerspective(System.Single,System.Single,System.Single,System.Single)">
  1213. <summary>
  1214. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view.
  1215. </summary>
  1216. <param name="width">Width of the viewing volume.</param>
  1217. <param name="height">Height of the viewing volume.</param>
  1218. <param name="nearPlaneDistance">Distance to the near plane.</param>
  1219. <param name="farPlaneDistance">Distance to the far plane.</param>
  1220. <returns>The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view.</returns>
  1221. </member>
  1222. <member name="M:CommonLang.Geometry.Matrix.CreatePerspective(System.Single,System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1223. <summary>
  1224. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view.
  1225. </summary>
  1226. <param name="width">Width of the viewing volume.</param>
  1227. <param name="height">Height of the viewing volume.</param>
  1228. <param name="nearPlaneDistance">Distance to the near plane.</param>
  1229. <param name="farPlaneDistance">Distance to the far plane.</param>
  1230. <param name="result">The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view as an output parameter.</param>
  1231. </member>
  1232. <member name="M:CommonLang.Geometry.Matrix.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)">
  1233. <summary>
  1234. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view with field of view.
  1235. </summary>
  1236. <param name="fieldOfView">Field of view in the y direction in radians.</param>
  1237. <param name="aspectRatio">Width divided by height of the viewing volume.</param>
  1238. <param name="nearPlaneDistance">Distance to the near plane.</param>
  1239. <param name="farPlaneDistance">Distance to the far plane.</param>
  1240. <returns>The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view with FOV.</returns>
  1241. </member>
  1242. <member name="M:CommonLang.Geometry.Matrix.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1243. <summary>
  1244. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view with field of view.
  1245. </summary>
  1246. <param name="fieldOfView">Field of view in the y direction in radians.</param>
  1247. <param name="aspectRatio">Width divided by height of the viewing volume.</param>
  1248. <param name="nearPlaneDistance">Distance of the near plane.</param>
  1249. <param name="farPlaneDistance">Distance of the far plane.</param>
  1250. <param name="result">The new projection <see cref="T:CommonLang.Geometry.Matrix"/> for perspective view with FOV as an output parameter.</param>
  1251. </member>
  1252. <member name="M:CommonLang.Geometry.Matrix.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  1253. <summary>
  1254. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized perspective view.
  1255. </summary>
  1256. <param name="left">Lower x-value at the near plane.</param>
  1257. <param name="right">Upper x-value at the near plane.</param>
  1258. <param name="bottom">Lower y-coordinate at the near plane.</param>
  1259. <param name="top">Upper y-value at the near plane.</param>
  1260. <param name="nearPlaneDistance">Distance to the near plane.</param>
  1261. <param name="farPlaneDistance">Distance to the far plane.</param>
  1262. <returns>The new <see cref="T:CommonLang.Geometry.Matrix"/> for customized perspective view.</returns>
  1263. </member>
  1264. <member name="M:CommonLang.Geometry.Matrix.CreatePerspectiveOffCenter(CommonLang.Geometry.Rectangle,System.Single,System.Single)">
  1265. <summary>
  1266. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized perspective view.
  1267. </summary>
  1268. <param name="viewingVolume">The viewing volume.</param>
  1269. <param name="nearPlaneDistance">Distance to the near plane.</param>
  1270. <param name="farPlaneDistance">Distance to the far plane.</param>
  1271. <returns>The new <see cref="T:CommonLang.Geometry.Matrix"/> for customized perspective view.</returns>
  1272. </member>
  1273. <member name="M:CommonLang.Geometry.Matrix.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1274. <summary>
  1275. Creates a new projection <see cref="T:CommonLang.Geometry.Matrix"/> for customized perspective view.
  1276. </summary>
  1277. <param name="left">Lower x-value at the near plane.</param>
  1278. <param name="right">Upper x-value at the near plane.</param>
  1279. <param name="bottom">Lower y-coordinate at the near plane.</param>
  1280. <param name="top">Upper y-value at the near plane.</param>
  1281. <param name="nearPlaneDistance">Distance to the near plane.</param>
  1282. <param name="farPlaneDistance">Distance to the far plane.</param>
  1283. <param name="result">The new <see cref="T:CommonLang.Geometry.Matrix"/> for customized perspective view as an output parameter.</param>
  1284. </member>
  1285. <member name="M:CommonLang.Geometry.Matrix.CreateRotationX(System.Single)">
  1286. <summary>
  1287. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> around X axis.
  1288. </summary>
  1289. <param name="radians">Angle in radians.</param>
  1290. <returns>The rotation <see cref="T:CommonLang.Geometry.Matrix"/> around X axis.</returns>
  1291. </member>
  1292. <member name="M:CommonLang.Geometry.Matrix.CreateRotationX(System.Single,CommonLang.Geometry.Matrix@)">
  1293. <summary>
  1294. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> around X axis.
  1295. </summary>
  1296. <param name="radians">Angle in radians.</param>
  1297. <param name="result">The rotation <see cref="T:CommonLang.Geometry.Matrix"/> around X axis as an output parameter.</param>
  1298. </member>
  1299. <member name="M:CommonLang.Geometry.Matrix.CreateRotationY(System.Single)">
  1300. <summary>
  1301. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Y axis.
  1302. </summary>
  1303. <param name="radians">Angle in radians.</param>
  1304. <returns>The rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Y axis.</returns>
  1305. </member>
  1306. <member name="M:CommonLang.Geometry.Matrix.CreateRotationY(System.Single,CommonLang.Geometry.Matrix@)">
  1307. <summary>
  1308. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Y axis.
  1309. </summary>
  1310. <param name="radians">Angle in radians.</param>
  1311. <param name="result">The rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Y axis as an output parameter.</param>
  1312. </member>
  1313. <member name="M:CommonLang.Geometry.Matrix.CreateRotationZ(System.Single)">
  1314. <summary>
  1315. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Z axis.
  1316. </summary>
  1317. <param name="radians">Angle in radians.</param>
  1318. <returns>The rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Z axis.</returns>
  1319. </member>
  1320. <member name="M:CommonLang.Geometry.Matrix.CreateRotationZ(System.Single,CommonLang.Geometry.Matrix@)">
  1321. <summary>
  1322. Creates a new rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Z axis.
  1323. </summary>
  1324. <param name="radians">Angle in radians.</param>
  1325. <param name="result">The rotation <see cref="T:CommonLang.Geometry.Matrix"/> around Z axis as an output parameter.</param>
  1326. </member>
  1327. <member name="M:CommonLang.Geometry.Matrix.CreateScale(System.Single)">
  1328. <summary>
  1329. Creates a new scaling <see cref="T:CommonLang.Geometry.Matrix"/>.
  1330. </summary>
  1331. <param name="scale">Scale value for all three axises.</param>
  1332. <returns>The scaling <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1333. </member>
  1334. <member name="M:CommonLang.Geometry.Matrix.CreateScale(System.Single,CommonLang.Geometry.Matrix@)">
  1335. <summary>
  1336. Creates a new scaling <see cref="T:CommonLang.Geometry.Matrix"/>.
  1337. </summary>
  1338. <param name="scale">Scale value for all three axises.</param>
  1339. <param name="result">The scaling <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1340. </member>
  1341. <member name="M:CommonLang.Geometry.Matrix.CreateScale(System.Single,System.Single,System.Single)">
  1342. <summary>
  1343. Creates a new scaling <see cref="T:CommonLang.Geometry.Matrix"/>.
  1344. </summary>
  1345. <param name="xScale">Scale value for X axis.</param>
  1346. <param name="yScale">Scale value for Y axis.</param>
  1347. <param name="zScale">Scale value for Z axis.</param>
  1348. <returns>The scaling <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1349. </member>
  1350. <member name="M:CommonLang.Geometry.Matrix.CreateScale(System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1351. <summary>
  1352. Creates a new scaling <see cref="T:CommonLang.Geometry.Matrix"/>.
  1353. </summary>
  1354. <param name="xScale">Scale value for X axis.</param>
  1355. <param name="yScale">Scale value for Y axis.</param>
  1356. <param name="zScale">Scale value for Z axis.</param>
  1357. <param name="result">The scaling <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1358. </member>
  1359. <member name="M:CommonLang.Geometry.Matrix.CreateScale(CommonLang.Geometry.Vector3)">
  1360. <summary>
  1361. Creates a new scaling <see cref="T:CommonLang.Geometry.Matrix"/>.
  1362. </summary>
  1363. <param name="scales"><see cref="T:CommonLang.Geometry.Vector3"/> representing x,y and z scale values.</param>
  1364. <returns>The scaling <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1365. </member>
  1366. <member name="M:CommonLang.Geometry.Matrix.CreateScale(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Matrix@)">
  1367. <summary>
  1368. Creates a new scaling <see cref="T:CommonLang.Geometry.Matrix"/>.
  1369. </summary>
  1370. <param name="scales"><see cref="T:CommonLang.Geometry.Vector3"/> representing x,y and z scale values.</param>
  1371. <param name="result">The scaling <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1372. </member>
  1373. <member name="M:CommonLang.Geometry.Matrix.CreateShadow(CommonLang.Geometry.Vector3,CommonLang.Geometry.Plane)">
  1374. <summary>
  1375. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that flattens geometry into a specified <see cref="T:CommonLang.Geometry.Plane"/> as if casting a shadow from a specified light source.
  1376. </summary>
  1377. <param name="lightDirection">A vector specifying the direction from which the light that will cast the shadow is coming.</param>
  1378. <param name="plane">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>
  1379. <returns>A <see cref="T:CommonLang.Geometry.Matrix"/> that can be used to flatten geometry onto the specified plane from the specified direction. </returns>
  1380. </member>
  1381. <member name="M:CommonLang.Geometry.Matrix.CreateShadow(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Plane@,CommonLang.Geometry.Matrix@)">
  1382. <summary>
  1383. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that flattens geometry into a specified <see cref="T:CommonLang.Geometry.Plane"/> as if casting a shadow from a specified light source.
  1384. </summary>
  1385. <param name="lightDirection">A vector specifying the direction from which the light that will cast the shadow is coming.</param>
  1386. <param name="plane">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>
  1387. <param name="result">A <see cref="T:CommonLang.Geometry.Matrix"/> that can be used to flatten geometry onto the specified plane from the specified direction as an output parameter.</param>
  1388. </member>
  1389. <member name="M:CommonLang.Geometry.Matrix.CreateTranslation(System.Single,System.Single,System.Single)">
  1390. <summary>
  1391. Creates a new translation <see cref="T:CommonLang.Geometry.Matrix"/>.
  1392. </summary>
  1393. <param name="xPosition">X coordinate of translation.</param>
  1394. <param name="yPosition">Y coordinate of translation.</param>
  1395. <param name="zPosition">Z coordinate of translation.</param>
  1396. <returns>The translation <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1397. </member>
  1398. <member name="M:CommonLang.Geometry.Matrix.CreateTranslation(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Matrix@)">
  1399. <summary>
  1400. Creates a new translation <see cref="T:CommonLang.Geometry.Matrix"/>.
  1401. </summary>
  1402. <param name="position">X,Y and Z coordinates of translation.</param>
  1403. <param name="result">The translation <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1404. </member>
  1405. <member name="M:CommonLang.Geometry.Matrix.CreateTranslation(CommonLang.Geometry.Vector3)">
  1406. <summary>
  1407. Creates a new translation <see cref="T:CommonLang.Geometry.Matrix"/>.
  1408. </summary>
  1409. <param name="position">X,Y and Z coordinates of translation.</param>
  1410. <returns>The translation <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1411. </member>
  1412. <member name="M:CommonLang.Geometry.Matrix.CreateTranslation(System.Single,System.Single,System.Single,CommonLang.Geometry.Matrix@)">
  1413. <summary>
  1414. Creates a new translation <see cref="T:CommonLang.Geometry.Matrix"/>.
  1415. </summary>
  1416. <param name="xPosition">X coordinate of translation.</param>
  1417. <param name="yPosition">Y coordinate of translation.</param>
  1418. <param name="zPosition">Z coordinate of translation.</param>
  1419. <param name="result">The translation <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1420. </member>
  1421. <member name="M:CommonLang.Geometry.Matrix.CreateReflection(CommonLang.Geometry.Plane)">
  1422. <summary>
  1423. Creates a new reflection <see cref="T:CommonLang.Geometry.Matrix"/>.
  1424. </summary>
  1425. <param name="value">The plane that used for reflection calculation.</param>
  1426. <returns>The reflection <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1427. </member>
  1428. <member name="M:CommonLang.Geometry.Matrix.CreateReflection(CommonLang.Geometry.Plane@,CommonLang.Geometry.Matrix@)">
  1429. <summary>
  1430. Creates a new reflection <see cref="T:CommonLang.Geometry.Matrix"/>.
  1431. </summary>
  1432. <param name="value">The plane that used for reflection calculation.</param>
  1433. <param name="result">The reflection <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1434. </member>
  1435. <member name="M:CommonLang.Geometry.Matrix.CreateWorld(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  1436. <summary>
  1437. Creates a new world <see cref="T:CommonLang.Geometry.Matrix"/>.
  1438. </summary>
  1439. <param name="position">The position vector.</param>
  1440. <param name="forward">The forward direction vector.</param>
  1441. <param name="up">The upward direction vector. Usually <see cref="P:CommonLang.Geometry.Vector3.Up"/>.</param>
  1442. <returns>The world <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1443. </member>
  1444. <member name="M:CommonLang.Geometry.Matrix.CreateWorld(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Matrix@)">
  1445. <summary>
  1446. Creates a new world <see cref="T:CommonLang.Geometry.Matrix"/>.
  1447. </summary>
  1448. <param name="position">The position vector.</param>
  1449. <param name="forward">The forward direction vector.</param>
  1450. <param name="up">The upward direction vector. Usually <see cref="P:CommonLang.Geometry.Vector3.Up"/>.</param>
  1451. <param name="result">The world <see cref="T:CommonLang.Geometry.Matrix"/> as an output parameter.</param>
  1452. </member>
  1453. <member name="M:CommonLang.Geometry.Matrix.Decompose(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Vector3@)">
  1454. <summary>
  1455. Decomposes this matrix to translation, rotation and scale elements. Returns <c>true</c> if matrix can be decomposed; <c>false</c> otherwise.
  1456. </summary>
  1457. <param name="scale">Scale vector as an output parameter.</param>
  1458. <param name="rotation">Rotation quaternion as an output parameter.</param>
  1459. <param name="translation">Translation vector as an output parameter.</param>
  1460. <returns><c>true</c> if matrix can be decomposed; <c>false</c> otherwise.</returns>
  1461. </member>
  1462. <member name="M:CommonLang.Geometry.Matrix.Determinant">
  1463. <summary>
  1464. Returns a determinant of this <see cref="T:CommonLang.Geometry.Matrix"/>.
  1465. </summary>
  1466. <returns>Determinant of this <see cref="T:CommonLang.Geometry.Matrix"/></returns>
  1467. <remarks>See more about determinant here - http://en.wikipedia.org/wiki/Determinant.
  1468. </remarks>
  1469. </member>
  1470. <member name="M:CommonLang.Geometry.Matrix.Divide(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1471. <summary>
  1472. Divides the elements of a <see cref="T:CommonLang.Geometry.Matrix"/> by the elements of another matrix.
  1473. </summary>
  1474. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1475. <param name="matrix2">Divisor <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1476. <returns>The result of dividing the matrix.</returns>
  1477. </member>
  1478. <member name="M:CommonLang.Geometry.Matrix.Divide(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@)">
  1479. <summary>
  1480. Divides the elements of a <see cref="T:CommonLang.Geometry.Matrix"/> by the elements of another matrix.
  1481. </summary>
  1482. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1483. <param name="matrix2">Divisor <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1484. <param name="result">The result of dividing the matrix as an output parameter.</param>
  1485. </member>
  1486. <member name="M:CommonLang.Geometry.Matrix.Divide(CommonLang.Geometry.Matrix,System.Single)">
  1487. <summary>
  1488. Divides the elements of a <see cref="T:CommonLang.Geometry.Matrix"/> by a scalar.
  1489. </summary>
  1490. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1491. <param name="divider">Divisor scalar.</param>
  1492. <returns>The result of dividing a matrix by a scalar.</returns>
  1493. </member>
  1494. <member name="M:CommonLang.Geometry.Matrix.Divide(CommonLang.Geometry.Matrix@,System.Single,CommonLang.Geometry.Matrix@)">
  1495. <summary>
  1496. Divides the elements of a <see cref="T:CommonLang.Geometry.Matrix"/> by a scalar.
  1497. </summary>
  1498. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1499. <param name="divider">Divisor scalar.</param>
  1500. <param name="result">The result of dividing a matrix by a scalar as an output parameter.</param>
  1501. </member>
  1502. <member name="M:CommonLang.Geometry.Matrix.Equals(CommonLang.Geometry.Matrix)">
  1503. <summary>
  1504. Compares whether current instance is equal to specified <see cref="T:CommonLang.Geometry.Matrix"/> without any tolerance.
  1505. </summary>
  1506. <param name="other">The <see cref="T:CommonLang.Geometry.Matrix"/> to compare.</param>
  1507. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  1508. </member>
  1509. <member name="M:CommonLang.Geometry.Matrix.Equals(System.Object)">
  1510. <summary>
  1511. Compares whether current instance is equal to specified <see cref="T:System.Object"/> without any tolerance.
  1512. </summary>
  1513. <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
  1514. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  1515. </member>
  1516. <member name="M:CommonLang.Geometry.Matrix.GetHashCode">
  1517. <summary>
  1518. Gets the hash code of this <see cref="T:CommonLang.Geometry.Matrix"/>.
  1519. </summary>
  1520. <returns>Hash code of this <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1521. </member>
  1522. <member name="M:CommonLang.Geometry.Matrix.Invert(CommonLang.Geometry.Matrix)">
  1523. <summary>
  1524. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> which contains inversion of the specified matrix.
  1525. </summary>
  1526. <param name="matrix">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1527. <returns>The inverted matrix.</returns>
  1528. </member>
  1529. <member name="M:CommonLang.Geometry.Matrix.Invert(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@)">
  1530. <summary>
  1531. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> which contains inversion of the specified matrix.
  1532. </summary>
  1533. <param name="matrix">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1534. <param name="result">The inverted matrix as output parameter.</param>
  1535. </member>
  1536. <member name="M:CommonLang.Geometry.Matrix.Lerp(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix,System.Single)">
  1537. <summary>
  1538. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains linear interpolation of the values in specified matrixes.
  1539. </summary>
  1540. <param name="matrix1">The first <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1541. <param name="matrix2">The second <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  1542. <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  1543. <returns>>The result of linear interpolation of the specified matrixes.</returns>
  1544. </member>
  1545. <member name="M:CommonLang.Geometry.Matrix.Lerp(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@,System.Single,CommonLang.Geometry.Matrix@)">
  1546. <summary>
  1547. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains linear interpolation of the values in specified matrixes.
  1548. </summary>
  1549. <param name="matrix1">The first <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1550. <param name="matrix2">The second <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  1551. <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  1552. <param name="result">The result of linear interpolation of the specified matrixes as an output parameter.</param>
  1553. </member>
  1554. <member name="M:CommonLang.Geometry.Matrix.Multiply(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1555. <summary>
  1556. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains a multiplication of two matrix.
  1557. </summary>
  1558. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1559. <param name="matrix2">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1560. <returns>Result of the matrix multiplication.</returns>
  1561. </member>
  1562. <member name="M:CommonLang.Geometry.Matrix.Multiply(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@)">
  1563. <summary>
  1564. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains a multiplication of two matrix.
  1565. </summary>
  1566. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1567. <param name="matrix2">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1568. <param name="result">Result of the matrix multiplication as an output parameter.</param>
  1569. </member>
  1570. <member name="M:CommonLang.Geometry.Matrix.Multiply(CommonLang.Geometry.Matrix,System.Single)">
  1571. <summary>
  1572. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains a multiplication of <see cref="T:CommonLang.Geometry.Matrix"/> and a scalar.
  1573. </summary>
  1574. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1575. <param name="scaleFactor">Scalar value.</param>
  1576. <returns>Result of the matrix multiplication with a scalar.</returns>
  1577. </member>
  1578. <member name="M:CommonLang.Geometry.Matrix.Multiply(CommonLang.Geometry.Matrix@,System.Single,CommonLang.Geometry.Matrix@)">
  1579. <summary>
  1580. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains a multiplication of <see cref="T:CommonLang.Geometry.Matrix"/> and a scalar.
  1581. </summary>
  1582. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1583. <param name="scaleFactor">Scalar value.</param>
  1584. <param name="result">Result of the matrix multiplication with a scalar as an output parameter.</param>
  1585. </member>
  1586. <member name="M:CommonLang.Geometry.Matrix.ToFloatArray(CommonLang.Geometry.Matrix)">
  1587. <summary>
  1588. Copy the values of specified <see cref="T:CommonLang.Geometry.Matrix"/> to the float array.
  1589. </summary>
  1590. <param name="matrix">The source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1591. <returns>The array which matrix values will be stored.</returns>
  1592. <remarks>
  1593. Required for OpenGL 2.0 projection matrix stuff.
  1594. </remarks>
  1595. </member>
  1596. <member name="M:CommonLang.Geometry.Matrix.Negate(CommonLang.Geometry.Matrix)">
  1597. <summary>
  1598. Returns a matrix with the all values negated.
  1599. </summary>
  1600. <param name="matrix">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1601. <returns>Result of the matrix negation.</returns>
  1602. </member>
  1603. <member name="M:CommonLang.Geometry.Matrix.Negate(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@)">
  1604. <summary>
  1605. Returns a matrix with the all values negated.
  1606. </summary>
  1607. <param name="matrix">Source <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1608. <param name="result">Result of the matrix negation as an output parameter.</param>
  1609. </member>
  1610. <member name="M:CommonLang.Geometry.Matrix.op_Addition(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1611. <summary>
  1612. Adds two matrixes.
  1613. </summary>
  1614. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the add sign.</param>
  1615. <param name="matrix2">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the right of the add sign.</param>
  1616. <returns>Sum of the matrixes.</returns>
  1617. </member>
  1618. <member name="M:CommonLang.Geometry.Matrix.op_Division(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1619. <summary>
  1620. Divides the elements of a <see cref="T:CommonLang.Geometry.Matrix"/> by the elements of another <see cref="T:CommonLang.Geometry.Matrix"/>.
  1621. </summary>
  1622. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the div sign.</param>
  1623. <param name="matrix2">Divisor <see cref="T:CommonLang.Geometry.Matrix"/> on the right of the div sign.</param>
  1624. <returns>The result of dividing the matrixes.</returns>
  1625. </member>
  1626. <member name="M:CommonLang.Geometry.Matrix.op_Division(CommonLang.Geometry.Matrix,System.Single)">
  1627. <summary>
  1628. Divides the elements of a <see cref="T:CommonLang.Geometry.Matrix"/> by a scalar.
  1629. </summary>
  1630. <param name="matrix">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the div sign.</param>
  1631. <param name="divider">Divisor scalar on the right of the div sign.</param>
  1632. <returns>The result of dividing a matrix by a scalar.</returns>
  1633. </member>
  1634. <member name="M:CommonLang.Geometry.Matrix.op_Equality(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1635. <summary>
  1636. Compares whether two <see cref="T:CommonLang.Geometry.Matrix"/> instances are equal without any tolerance.
  1637. </summary>
  1638. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the equal sign.</param>
  1639. <param name="matrix2">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the right of the equal sign.</param>
  1640. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  1641. </member>
  1642. <member name="M:CommonLang.Geometry.Matrix.op_Inequality(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1643. <summary>
  1644. Compares whether two <see cref="T:CommonLang.Geometry.Matrix"/> instances are not equal without any tolerance.
  1645. </summary>
  1646. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the not equal sign.</param>
  1647. <param name="matrix2">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the right of the not equal sign.</param>
  1648. <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  1649. </member>
  1650. <member name="M:CommonLang.Geometry.Matrix.op_Multiply(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1651. <summary>
  1652. Multiplies two matrixes.
  1653. </summary>
  1654. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the mul sign.</param>
  1655. <param name="matrix2">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the right of the mul sign.</param>
  1656. <returns>Result of the matrix multiplication.</returns>
  1657. <remarks>
  1658. Using matrix multiplication algorithm - see http://en.wikipedia.org/wiki/Matrix_multiplication.
  1659. </remarks>
  1660. </member>
  1661. <member name="M:CommonLang.Geometry.Matrix.op_Multiply(CommonLang.Geometry.Matrix,System.Single)">
  1662. <summary>
  1663. Multiplies the elements of matrix by a scalar.
  1664. </summary>
  1665. <param name="matrix">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the mul sign.</param>
  1666. <param name="scaleFactor">Scalar value on the right of the mul sign.</param>
  1667. <returns>Result of the matrix multiplication with a scalar.</returns>
  1668. </member>
  1669. <member name="M:CommonLang.Geometry.Matrix.op_Subtraction(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1670. <summary>
  1671. Subtracts the values of one <see cref="T:CommonLang.Geometry.Matrix"/> from another <see cref="T:CommonLang.Geometry.Matrix"/>.
  1672. </summary>
  1673. <param name="matrix1">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the left of the sub sign.</param>
  1674. <param name="matrix2">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the right of the sub sign.</param>
  1675. <returns>Result of the matrix subtraction.</returns>
  1676. </member>
  1677. <member name="M:CommonLang.Geometry.Matrix.op_UnaryNegation(CommonLang.Geometry.Matrix)">
  1678. <summary>
  1679. Inverts values in the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  1680. </summary>
  1681. <param name="matrix">Source <see cref="T:CommonLang.Geometry.Matrix"/> on the right of the sub sign.</param>
  1682. <returns>Result of the inversion.</returns>
  1683. </member>
  1684. <member name="M:CommonLang.Geometry.Matrix.Subtract(CommonLang.Geometry.Matrix,CommonLang.Geometry.Matrix)">
  1685. <summary>
  1686. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains subtraction of one matrix from another.
  1687. </summary>
  1688. <param name="matrix1">The first <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1689. <param name="matrix2">The second <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1690. <returns>The result of the matrix subtraction.</returns>
  1691. </member>
  1692. <member name="M:CommonLang.Geometry.Matrix.Subtract(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@)">
  1693. <summary>
  1694. Creates a new <see cref="T:CommonLang.Geometry.Matrix"/> that contains subtraction of one matrix from another.
  1695. </summary>
  1696. <param name="matrix1">The first <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1697. <param name="matrix2">The second <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  1698. <param name="result">The result of the matrix subtraction as an output parameter.</param>
  1699. </member>
  1700. <member name="M:CommonLang.Geometry.Matrix.ToString">
  1701. <summary>
  1702. Returns a <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Matrix"/> in the format:
  1703. {M11:[<see cref="F:CommonLang.Geometry.Matrix.M11"/>] M12:[<see cref="F:CommonLang.Geometry.Matrix.M12"/>] M13:[<see cref="F:CommonLang.Geometry.Matrix.M13"/>] M14:[<see cref="F:CommonLang.Geometry.Matrix.M14"/>]}
  1704. {M21:[<see cref="F:CommonLang.Geometry.Matrix.M21"/>] M12:[<see cref="F:CommonLang.Geometry.Matrix.M22"/>] M13:[<see cref="F:CommonLang.Geometry.Matrix.M23"/>] M14:[<see cref="F:CommonLang.Geometry.Matrix.M24"/>]}
  1705. {M31:[<see cref="F:CommonLang.Geometry.Matrix.M31"/>] M32:[<see cref="F:CommonLang.Geometry.Matrix.M32"/>] M33:[<see cref="F:CommonLang.Geometry.Matrix.M33"/>] M34:[<see cref="F:CommonLang.Geometry.Matrix.M34"/>]}
  1706. {M41:[<see cref="F:CommonLang.Geometry.Matrix.M41"/>] M42:[<see cref="F:CommonLang.Geometry.Matrix.M42"/>] M43:[<see cref="F:CommonLang.Geometry.Matrix.M43"/>] M44:[<see cref="F:CommonLang.Geometry.Matrix.M44"/>]}
  1707. </summary>
  1708. <returns>A <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Matrix"/>.</returns>
  1709. </member>
  1710. <member name="M:CommonLang.Geometry.Matrix.Transpose(CommonLang.Geometry.Matrix)">
  1711. <summary>
  1712. Swap the matrix rows and columns.
  1713. </summary>
  1714. <param name="matrix">The matrix for transposing operation.</param>
  1715. <returns>The new <see cref="T:CommonLang.Geometry.Matrix"/> which contains the transposing result.</returns>
  1716. </member>
  1717. <member name="M:CommonLang.Geometry.Matrix.Transpose(CommonLang.Geometry.Matrix@,CommonLang.Geometry.Matrix@)">
  1718. <summary>
  1719. Swap the matrix rows and columns.
  1720. </summary>
  1721. <param name="matrix">The matrix for transposing operation.</param>
  1722. <param name="result">The new <see cref="T:CommonLang.Geometry.Matrix"/> which contains the transposing result as an output parameter.</param>
  1723. </member>
  1724. <member name="M:CommonLang.Geometry.Matrix.FindDeterminants(CommonLang.Geometry.Matrix@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@,System.Single@)">
  1725. <summary>
  1726. Helper method for using the Laplace expansion theorem using two rows expansions to calculate major and
  1727. minor determinants of a 4x4 matrix. This method is used for inverting a matrix.
  1728. </summary>
  1729. </member>
  1730. <member name="M:CommonLang.Geometry.PlaneHelper.ClassifyPoint(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Plane@)">
  1731. <summary>
  1732. Returns a value indicating what side (positive/negative) of a plane a point is
  1733. </summary>
  1734. <param name="point">The point to check with</param>
  1735. <param name="plane">The plane to check against</param>
  1736. <returns>Greater than zero if on the positive side, less than zero if on the negative size, 0 otherwise</returns>
  1737. </member>
  1738. <member name="M:CommonLang.Geometry.PlaneHelper.PerpendicularDistance(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Plane@)">
  1739. <summary>
  1740. Returns the perpendicular distance from a point to a plane
  1741. </summary>
  1742. <param name="point">The point to check</param>
  1743. <param name="plane">The place to check</param>
  1744. <returns>The perpendicular distance from the point to the plane</returns>
  1745. </member>
  1746. <member name="M:CommonLang.Geometry.Plane.Transform(CommonLang.Geometry.Plane,CommonLang.Geometry.Matrix)">
  1747. <summary>
  1748. Transforms a normalized plane by a matrix.
  1749. </summary>
  1750. <param name="plane">The normalized plane to transform.</param>
  1751. <param name="matrix">The transformation matrix.</param>
  1752. <returns>The transformed plane.</returns>
  1753. </member>
  1754. <member name="M:CommonLang.Geometry.Plane.Transform(CommonLang.Geometry.Plane@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Plane@)">
  1755. <summary>
  1756. Transforms a normalized plane by a matrix.
  1757. </summary>
  1758. <param name="plane">The normalized plane to transform.</param>
  1759. <param name="matrix">The transformation matrix.</param>
  1760. <param name="result">The transformed plane.</param>
  1761. </member>
  1762. <member name="M:CommonLang.Geometry.Plane.Transform(CommonLang.Geometry.Plane,CommonLang.Geometry.Quaternion)">
  1763. <summary>
  1764. Transforms a normalized plane by a quaternion rotation.
  1765. </summary>
  1766. <param name="plane">The normalized plane to transform.</param>
  1767. <param name="rotation">The quaternion rotation.</param>
  1768. <returns>The transformed plane.</returns>
  1769. </member>
  1770. <member name="M:CommonLang.Geometry.Plane.Transform(CommonLang.Geometry.Plane@,CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Plane@)">
  1771. <summary>
  1772. Transforms a normalized plane by a quaternion rotation.
  1773. </summary>
  1774. <param name="plane">The normalized plane to transform.</param>
  1775. <param name="rotation">The quaternion rotation.</param>
  1776. <param name="result">The transformed plane.</param>
  1777. </member>
  1778. <member name="T:CommonLang.Geometry.PlaneIntersectionType">
  1779. <summary>
  1780. Defines the intersection between a <see cref="T:CommonLang.Geometry.Plane"/> and a bounding volume.
  1781. </summary>
  1782. </member>
  1783. <member name="F:CommonLang.Geometry.PlaneIntersectionType.Front">
  1784. <summary>
  1785. There is no intersection, the bounding volume is in the negative half space of the plane.
  1786. </summary>
  1787. </member>
  1788. <member name="F:CommonLang.Geometry.PlaneIntersectionType.Back">
  1789. <summary>
  1790. There is no intersection, the bounding volume is in the positive half space of the plane.
  1791. </summary>
  1792. </member>
  1793. <member name="F:CommonLang.Geometry.PlaneIntersectionType.Intersecting">
  1794. <summary>
  1795. The plane is intersected.
  1796. </summary>
  1797. </member>
  1798. <member name="T:CommonLang.Geometry.Point">
  1799. <summary>
  1800. Describes a 2D-point.
  1801. </summary>
  1802. </member>
  1803. <member name="F:CommonLang.Geometry.Point.X">
  1804. <summary>
  1805. The x coordinate of this <see cref="T:CommonLang.Geometry.Point"/>.
  1806. </summary>
  1807. </member>
  1808. <member name="F:CommonLang.Geometry.Point.Y">
  1809. <summary>
  1810. The y coordinate of this <see cref="T:CommonLang.Geometry.Point"/>.
  1811. </summary>
  1812. </member>
  1813. <member name="P:CommonLang.Geometry.Point.Zero">
  1814. <summary>
  1815. Returns a <see cref="T:CommonLang.Geometry.Point"/> with coordinates 0, 0.
  1816. </summary>
  1817. </member>
  1818. <member name="M:CommonLang.Geometry.Point.#ctor(System.Int32,System.Int32)">
  1819. <summary>
  1820. Constructs a point wit X and Y from two values.
  1821. </summary>
  1822. <param name="x">The x coordinate in 2d-space.</param>
  1823. <param name="y">The y coordinate in 2d-space.</param>
  1824. </member>
  1825. <member name="M:CommonLang.Geometry.Point.#ctor(System.Int32)">
  1826. <summary>
  1827. Constructs a point with X and Y set to the same value.
  1828. </summary>
  1829. <param name="value">The x and y coordinates in 2d-space.</param>
  1830. </member>
  1831. <member name="M:CommonLang.Geometry.Point.op_Addition(CommonLang.Geometry.Point,CommonLang.Geometry.Point)">
  1832. <summary>
  1833. Adds two points.
  1834. </summary>
  1835. <param name="value1">Source <see cref="T:CommonLang.Geometry.Point"/> on the left of the add sign.</param>
  1836. <param name="value2">Source <see cref="T:CommonLang.Geometry.Point"/> on the right of the add sign.</param>
  1837. <returns>Sum of the points.</returns>
  1838. </member>
  1839. <member name="M:CommonLang.Geometry.Point.op_Subtraction(CommonLang.Geometry.Point,CommonLang.Geometry.Point)">
  1840. <summary>
  1841. Subtracts a <see cref="T:CommonLang.Geometry.Point"/> from a <see cref="T:CommonLang.Geometry.Point"/>.
  1842. </summary>
  1843. <param name="value1">Source <see cref="T:CommonLang.Geometry.Point"/> on the left of the sub sign.</param>
  1844. <param name="value2">Source <see cref="T:CommonLang.Geometry.Point"/> on the right of the sub sign.</param>
  1845. <returns>Result of the subtraction.</returns>
  1846. </member>
  1847. <member name="M:CommonLang.Geometry.Point.op_Multiply(CommonLang.Geometry.Point,CommonLang.Geometry.Point)">
  1848. <summary>
  1849. Multiplies the components of two points by each other.
  1850. </summary>
  1851. <param name="value1">Source <see cref="T:CommonLang.Geometry.Point"/> on the left of the mul sign.</param>
  1852. <param name="value2">Source <see cref="T:CommonLang.Geometry.Point"/> on the right of the mul sign.</param>
  1853. <returns>Result of the multiplication.</returns>
  1854. </member>
  1855. <member name="M:CommonLang.Geometry.Point.op_Division(CommonLang.Geometry.Point,CommonLang.Geometry.Point)">
  1856. <summary>
  1857. Divides the components of a <see cref="T:CommonLang.Geometry.Point"/> by the components of another <see cref="T:CommonLang.Geometry.Point"/>.
  1858. </summary>
  1859. <param name="source">Source <see cref="T:CommonLang.Geometry.Point"/> on the left of the div sign.</param>
  1860. <param name="divisor">Divisor <see cref="T:CommonLang.Geometry.Point"/> on the right of the div sign.</param>
  1861. <returns>The result of dividing the points.</returns>
  1862. </member>
  1863. <member name="M:CommonLang.Geometry.Point.op_Equality(CommonLang.Geometry.Point,CommonLang.Geometry.Point)">
  1864. <summary>
  1865. Compares whether two <see cref="T:CommonLang.Geometry.Point"/> instances are equal.
  1866. </summary>
  1867. <param name="a"><see cref="T:CommonLang.Geometry.Point"/> instance on the left of the equal sign.</param>
  1868. <param name="b"><see cref="T:CommonLang.Geometry.Point"/> instance on the right of the equal sign.</param>
  1869. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  1870. </member>
  1871. <member name="M:CommonLang.Geometry.Point.op_Inequality(CommonLang.Geometry.Point,CommonLang.Geometry.Point)">
  1872. <summary>
  1873. Compares whether two <see cref="T:CommonLang.Geometry.Point"/> instances are not equal.
  1874. </summary>
  1875. <param name="a"><see cref="T:CommonLang.Geometry.Point"/> instance on the left of the not equal sign.</param>
  1876. <param name="b"><see cref="T:CommonLang.Geometry.Point"/> instance on the right of the not equal sign.</param>
  1877. <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  1878. </member>
  1879. <member name="M:CommonLang.Geometry.Point.Equals(System.Object)">
  1880. <summary>
  1881. Compares whether current instance is equal to specified <see cref="T:System.Object"/>.
  1882. </summary>
  1883. <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
  1884. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  1885. </member>
  1886. <member name="M:CommonLang.Geometry.Point.Equals(CommonLang.Geometry.Point)">
  1887. <summary>
  1888. Compares whether current instance is equal to specified <see cref="T:CommonLang.Geometry.Point"/>.
  1889. </summary>
  1890. <param name="other">The <see cref="T:CommonLang.Geometry.Point"/> to compare.</param>
  1891. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  1892. </member>
  1893. <member name="M:CommonLang.Geometry.Point.GetHashCode">
  1894. <summary>
  1895. Gets the hash code of this <see cref="T:CommonLang.Geometry.Point"/>.
  1896. </summary>
  1897. <returns>Hash code of this <see cref="T:CommonLang.Geometry.Point"/>.</returns>
  1898. </member>
  1899. <member name="M:CommonLang.Geometry.Point.ToString">
  1900. <summary>
  1901. Returns a <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Point"/> in the format:
  1902. {X:[<see cref="F:CommonLang.Geometry.Point.X"/>] Y:[<see cref="F:CommonLang.Geometry.Point.Y"/>]}
  1903. </summary>
  1904. <returns><see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Point"/>.</returns>
  1905. </member>
  1906. <member name="M:CommonLang.Geometry.Point.ToVector2">
  1907. <summary>
  1908. Gets a <see cref="T:CommonLang.Geometry.Vector2"/> representation for this object.
  1909. </summary>
  1910. <returns>A <see cref="T:CommonLang.Geometry.Vector2"/> representation for this object.</returns>
  1911. </member>
  1912. <member name="T:CommonLang.Geometry.Rectangle">
  1913. <summary>
  1914. Describes a 2D-rectangle.
  1915. </summary>
  1916. </member>
  1917. <member name="F:CommonLang.Geometry.Rectangle.X">
  1918. <summary>
  1919. The x coordinate of the top-left corner of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1920. </summary>
  1921. </member>
  1922. <member name="F:CommonLang.Geometry.Rectangle.Y">
  1923. <summary>
  1924. The y coordinate of the top-left corner of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1925. </summary>
  1926. </member>
  1927. <member name="F:CommonLang.Geometry.Rectangle.Width">
  1928. <summary>
  1929. The width of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1930. </summary>
  1931. </member>
  1932. <member name="F:CommonLang.Geometry.Rectangle.Height">
  1933. <summary>
  1934. The height of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1935. </summary>
  1936. </member>
  1937. <member name="P:CommonLang.Geometry.Rectangle.Empty">
  1938. <summary>
  1939. Returns a <see cref="T:CommonLang.Geometry.Rectangle"/> with X=0, Y=0, Width=0, Height=0.
  1940. </summary>
  1941. </member>
  1942. <member name="P:CommonLang.Geometry.Rectangle.Left">
  1943. <summary>
  1944. Returns the x coordinate of the left edge of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1945. </summary>
  1946. </member>
  1947. <member name="P:CommonLang.Geometry.Rectangle.Right">
  1948. <summary>
  1949. Returns the x coordinate of the right edge of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1950. </summary>
  1951. </member>
  1952. <member name="P:CommonLang.Geometry.Rectangle.Top">
  1953. <summary>
  1954. Returns the y coordinate of the top edge of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1955. </summary>
  1956. </member>
  1957. <member name="P:CommonLang.Geometry.Rectangle.Bottom">
  1958. <summary>
  1959. Returns the y coordinate of the bottom edge of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1960. </summary>
  1961. </member>
  1962. <member name="P:CommonLang.Geometry.Rectangle.IsEmpty">
  1963. <summary>
  1964. Whether or not this <see cref="T:CommonLang.Geometry.Rectangle"/> has a <see cref="F:CommonLang.Geometry.Rectangle.Width"/> and
  1965. <see cref="F:CommonLang.Geometry.Rectangle.Height"/> of 0, and a <see cref="P:CommonLang.Geometry.Rectangle.Location"/> of (0, 0).
  1966. </summary>
  1967. </member>
  1968. <member name="P:CommonLang.Geometry.Rectangle.Location">
  1969. <summary>
  1970. The top-left coordinates of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1971. </summary>
  1972. </member>
  1973. <member name="P:CommonLang.Geometry.Rectangle.Size">
  1974. <summary>
  1975. The width-height coordinates of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1976. </summary>
  1977. </member>
  1978. <member name="P:CommonLang.Geometry.Rectangle.Center">
  1979. <summary>
  1980. A <see cref="T:CommonLang.Geometry.Point"/> located in the center of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  1981. </summary>
  1982. <remarks>
  1983. If <see cref="F:CommonLang.Geometry.Rectangle.Width"/> or <see cref="F:CommonLang.Geometry.Rectangle.Height"/> is an odd number,
  1984. the center point will be rounded down.
  1985. </remarks>
  1986. </member>
  1987. <member name="M:CommonLang.Geometry.Rectangle.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
  1988. <summary>
  1989. Creates a new instance of <see cref="T:CommonLang.Geometry.Rectangle"/> struct, with the specified
  1990. position, width, and height.
  1991. </summary>
  1992. <param name="x">The x coordinate of the top-left corner of the created <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  1993. <param name="y">The y coordinate of the top-left corner of the created <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  1994. <param name="width">The width of the created <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  1995. <param name="height">The height of the created <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  1996. </member>
  1997. <member name="M:CommonLang.Geometry.Rectangle.#ctor(CommonLang.Geometry.Point,CommonLang.Geometry.Point)">
  1998. <summary>
  1999. Creates a new instance of <see cref="T:CommonLang.Geometry.Rectangle"/> struct, with the specified
  2000. location and size.
  2001. </summary>
  2002. <param name="location">The x and y coordinates of the top-left corner of the created <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2003. <param name="size">The width and height of the created <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2004. </member>
  2005. <member name="M:CommonLang.Geometry.Rectangle.op_Equality(CommonLang.Geometry.Rectangle,CommonLang.Geometry.Rectangle)">
  2006. <summary>
  2007. Compares whether two <see cref="T:CommonLang.Geometry.Rectangle"/> instances are equal.
  2008. </summary>
  2009. <param name="a"><see cref="T:CommonLang.Geometry.Rectangle"/> instance on the left of the equal sign.</param>
  2010. <param name="b"><see cref="T:CommonLang.Geometry.Rectangle"/> instance on the right of the equal sign.</param>
  2011. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  2012. </member>
  2013. <member name="M:CommonLang.Geometry.Rectangle.op_Inequality(CommonLang.Geometry.Rectangle,CommonLang.Geometry.Rectangle)">
  2014. <summary>
  2015. Compares whether two <see cref="T:CommonLang.Geometry.Rectangle"/> instances are not equal.
  2016. </summary>
  2017. <param name="a"><see cref="T:CommonLang.Geometry.Rectangle"/> instance on the left of the not equal sign.</param>
  2018. <param name="b"><see cref="T:CommonLang.Geometry.Rectangle"/> instance on the right of the not equal sign.</param>
  2019. <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  2020. </member>
  2021. <member name="M:CommonLang.Geometry.Rectangle.Contains(System.Int32,System.Int32)">
  2022. <summary>
  2023. Gets whether or not the provided coordinates lie within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2024. </summary>
  2025. <param name="x">The x coordinate of the point to check for containment.</param>
  2026. <param name="y">The y coordinate of the point to check for containment.</param>
  2027. <returns><c>true</c> if the provided coordinates lie inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise.</returns>
  2028. </member>
  2029. <member name="M:CommonLang.Geometry.Rectangle.Contains(System.Single,System.Single)">
  2030. <summary>
  2031. Gets whether or not the provided coordinates lie within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2032. </summary>
  2033. <param name="x">The x coordinate of the point to check for containment.</param>
  2034. <param name="y">The y coordinate of the point to check for containment.</param>
  2035. <returns><c>true</c> if the provided coordinates lie inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise.</returns>
  2036. </member>
  2037. <member name="M:CommonLang.Geometry.Rectangle.Contains(CommonLang.Geometry.Point)">
  2038. <summary>
  2039. Gets whether or not the provided <see cref="T:CommonLang.Geometry.Point"/> lies within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2040. </summary>
  2041. <param name="value">The coordinates to check for inclusion in this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2042. <returns><c>true</c> if the provided <see cref="T:CommonLang.Geometry.Point"/> lies inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise.</returns>
  2043. </member>
  2044. <member name="M:CommonLang.Geometry.Rectangle.Contains(CommonLang.Geometry.Point@,System.Boolean@)">
  2045. <summary>
  2046. Gets whether or not the provided <see cref="T:CommonLang.Geometry.Point"/> lies within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2047. </summary>
  2048. <param name="value">The coordinates to check for inclusion in this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2049. <param name="result"><c>true</c> if the provided <see cref="T:CommonLang.Geometry.Point"/> lies inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise. As an output parameter.</param>
  2050. </member>
  2051. <member name="M:CommonLang.Geometry.Rectangle.Contains(CommonLang.Geometry.Vector2)">
  2052. <summary>
  2053. Gets whether or not the provided <see cref="T:CommonLang.Geometry.Vector2"/> lies within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2054. </summary>
  2055. <param name="value">The coordinates to check for inclusion in this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2056. <returns><c>true</c> if the provided <see cref="T:CommonLang.Geometry.Vector2"/> lies inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise.</returns>
  2057. </member>
  2058. <member name="M:CommonLang.Geometry.Rectangle.Contains(CommonLang.Geometry.Vector2@,System.Boolean@)">
  2059. <summary>
  2060. Gets whether or not the provided <see cref="T:CommonLang.Geometry.Vector2"/> lies within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2061. </summary>
  2062. <param name="value">The coordinates to check for inclusion in this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2063. <param name="result"><c>true</c> if the provided <see cref="T:CommonLang.Geometry.Vector2"/> lies inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise. As an output parameter.</param>
  2064. </member>
  2065. <member name="M:CommonLang.Geometry.Rectangle.Contains(CommonLang.Geometry.Rectangle)">
  2066. <summary>
  2067. Gets whether or not the provided <see cref="T:CommonLang.Geometry.Rectangle"/> lies within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2068. </summary>
  2069. <param name="value">The <see cref="T:CommonLang.Geometry.Rectangle"/> to check for inclusion in this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2070. <returns><c>true</c> if the provided <see cref="T:CommonLang.Geometry.Rectangle"/>'s bounds lie entirely inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise.</returns>
  2071. </member>
  2072. <member name="M:CommonLang.Geometry.Rectangle.Contains(CommonLang.Geometry.Rectangle@,System.Boolean@)">
  2073. <summary>
  2074. Gets whether or not the provided <see cref="T:CommonLang.Geometry.Rectangle"/> lies within the bounds of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2075. </summary>
  2076. <param name="value">The <see cref="T:CommonLang.Geometry.Rectangle"/> to check for inclusion in this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2077. <param name="result"><c>true</c> if the provided <see cref="T:CommonLang.Geometry.Rectangle"/>'s bounds lie entirely inside this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise. As an output parameter.</param>
  2078. </member>
  2079. <member name="M:CommonLang.Geometry.Rectangle.Equals(System.Object)">
  2080. <summary>
  2081. Compares whether current instance is equal to specified <see cref="T:System.Object"/>.
  2082. </summary>
  2083. <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
  2084. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  2085. </member>
  2086. <member name="M:CommonLang.Geometry.Rectangle.Equals(CommonLang.Geometry.Rectangle)">
  2087. <summary>
  2088. Compares whether current instance is equal to specified <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2089. </summary>
  2090. <param name="other">The <see cref="T:CommonLang.Geometry.Rectangle"/> to compare.</param>
  2091. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  2092. </member>
  2093. <member name="M:CommonLang.Geometry.Rectangle.GetHashCode">
  2094. <summary>
  2095. Gets the hash code of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2096. </summary>
  2097. <returns>Hash code of this <see cref="T:CommonLang.Geometry.Rectangle"/>.</returns>
  2098. </member>
  2099. <member name="M:CommonLang.Geometry.Rectangle.Inflate(System.Int32,System.Int32)">
  2100. <summary>
  2101. Adjusts the edges of this <see cref="T:CommonLang.Geometry.Rectangle"/> by specified horizontal and vertical amounts.
  2102. </summary>
  2103. <param name="horizontalAmount">Value to adjust the left and right edges.</param>
  2104. <param name="verticalAmount">Value to adjust the top and bottom edges.</param>
  2105. </member>
  2106. <member name="M:CommonLang.Geometry.Rectangle.Inflate(System.Single,System.Single)">
  2107. <summary>
  2108. Adjusts the edges of this <see cref="T:CommonLang.Geometry.Rectangle"/> by specified horizontal and vertical amounts.
  2109. </summary>
  2110. <param name="horizontalAmount">Value to adjust the left and right edges.</param>
  2111. <param name="verticalAmount">Value to adjust the top and bottom edges.</param>
  2112. </member>
  2113. <member name="M:CommonLang.Geometry.Rectangle.Intersects(CommonLang.Geometry.Rectangle)">
  2114. <summary>
  2115. Gets whether or not a specified <see cref="T:CommonLang.Geometry.Rectangle"/> intersects with this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2116. </summary>
  2117. <param name="value">Other <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2118. <returns><c>true</c> if other <see cref="T:CommonLang.Geometry.Rectangle"/> intersects with this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise.</returns>
  2119. </member>
  2120. <member name="M:CommonLang.Geometry.Rectangle.Intersects(CommonLang.Geometry.Rectangle@,System.Boolean@)">
  2121. <summary>
  2122. Gets whether or not a specified <see cref="T:CommonLang.Geometry.Rectangle"/> intersects with this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2123. </summary>
  2124. <param name="value">Other <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2125. <param name="result"><c>true</c> if other <see cref="T:CommonLang.Geometry.Rectangle"/> intersects with this <see cref="T:CommonLang.Geometry.Rectangle"/>; <c>false</c> otherwise. As an output parameter.</param>
  2126. </member>
  2127. <member name="M:CommonLang.Geometry.Rectangle.Intersect(CommonLang.Geometry.Rectangle,CommonLang.Geometry.Rectangle)">
  2128. <summary>
  2129. Creates a new <see cref="T:CommonLang.Geometry.Rectangle"/> that contains overlapping region of two other rectangles.
  2130. </summary>
  2131. <param name="value1">The first <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2132. <param name="value2">The second <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2133. <returns>Overlapping region of the two rectangles.</returns>
  2134. </member>
  2135. <member name="M:CommonLang.Geometry.Rectangle.Intersect(CommonLang.Geometry.Rectangle@,CommonLang.Geometry.Rectangle@,CommonLang.Geometry.Rectangle@)">
  2136. <summary>
  2137. Creates a new <see cref="T:CommonLang.Geometry.Rectangle"/> that contains overlapping region of two other rectangles.
  2138. </summary>
  2139. <param name="value1">The first <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2140. <param name="value2">The second <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2141. <param name="result">Overlapping region of the two rectangles as an output parameter.</param>
  2142. </member>
  2143. <member name="M:CommonLang.Geometry.Rectangle.Offset(System.Int32,System.Int32)">
  2144. <summary>
  2145. Changes the <see cref="P:CommonLang.Geometry.Rectangle.Location"/> of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2146. </summary>
  2147. <param name="offsetX">The x coordinate to add to this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2148. <param name="offsetY">The y coordinate to add to this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2149. </member>
  2150. <member name="M:CommonLang.Geometry.Rectangle.Offset(System.Single,System.Single)">
  2151. <summary>
  2152. Changes the <see cref="P:CommonLang.Geometry.Rectangle.Location"/> of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2153. </summary>
  2154. <param name="offsetX">The x coordinate to add to this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2155. <param name="offsetY">The y coordinate to add to this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2156. </member>
  2157. <member name="M:CommonLang.Geometry.Rectangle.Offset(CommonLang.Geometry.Point)">
  2158. <summary>
  2159. Changes the <see cref="P:CommonLang.Geometry.Rectangle.Location"/> of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2160. </summary>
  2161. <param name="amount">The x and y components to add to this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2162. </member>
  2163. <member name="M:CommonLang.Geometry.Rectangle.Offset(CommonLang.Geometry.Vector2)">
  2164. <summary>
  2165. Changes the <see cref="P:CommonLang.Geometry.Rectangle.Location"/> of this <see cref="T:CommonLang.Geometry.Rectangle"/>.
  2166. </summary>
  2167. <param name="amount">The x and y components to add to this <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2168. </member>
  2169. <member name="M:CommonLang.Geometry.Rectangle.ToString">
  2170. <summary>
  2171. Returns a <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Rectangle"/> in the format:
  2172. {X:[<see cref="F:CommonLang.Geometry.Rectangle.X"/>] Y:[<see cref="F:CommonLang.Geometry.Rectangle.Y"/>] Width:[<see cref="F:CommonLang.Geometry.Rectangle.Width"/>] Height:[<see cref="F:CommonLang.Geometry.Rectangle.Height"/>]}
  2173. </summary>
  2174. <returns><see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Rectangle"/>.</returns>
  2175. </member>
  2176. <member name="M:CommonLang.Geometry.Rectangle.Union(CommonLang.Geometry.Rectangle,CommonLang.Geometry.Rectangle)">
  2177. <summary>
  2178. Creates a new <see cref="T:CommonLang.Geometry.Rectangle"/> that completely contains two other rectangles.
  2179. </summary>
  2180. <param name="value1">The first <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2181. <param name="value2">The second <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2182. <returns>The union of the two rectangles.</returns>
  2183. </member>
  2184. <member name="M:CommonLang.Geometry.Rectangle.Union(CommonLang.Geometry.Rectangle@,CommonLang.Geometry.Rectangle@,CommonLang.Geometry.Rectangle@)">
  2185. <summary>
  2186. Creates a new <see cref="T:CommonLang.Geometry.Rectangle"/> that completely contains two other rectangles.
  2187. </summary>
  2188. <param name="value1">The first <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2189. <param name="value2">The second <see cref="T:CommonLang.Geometry.Rectangle"/>.</param>
  2190. <param name="result">The union of the two rectangles as an output parameter.</param>
  2191. </member>
  2192. <member name="F:CommonLang.Geometry.Vector2.X">
  2193. <summary>
  2194. The x coordinate of this <see cref="T:CommonLang.Geometry.Vector2"/>.
  2195. </summary>
  2196. </member>
  2197. <member name="F:CommonLang.Geometry.Vector2.Y">
  2198. <summary>
  2199. The y coordinate of this <see cref="T:CommonLang.Geometry.Vector2"/>.
  2200. </summary>
  2201. </member>
  2202. <member name="P:CommonLang.Geometry.Vector2.Zero">
  2203. <summary>
  2204. Returns a <see cref="T:CommonLang.Geometry.Vector2"/> with components 0, 0.
  2205. </summary>
  2206. </member>
  2207. <member name="P:CommonLang.Geometry.Vector2.One">
  2208. <summary>
  2209. Returns a <see cref="T:CommonLang.Geometry.Vector2"/> with components 1, 1.
  2210. </summary>
  2211. </member>
  2212. <member name="P:CommonLang.Geometry.Vector2.UnitX">
  2213. <summary>
  2214. Returns a <see cref="T:CommonLang.Geometry.Vector2"/> with components 1, 0.
  2215. </summary>
  2216. </member>
  2217. <member name="P:CommonLang.Geometry.Vector2.UnitY">
  2218. <summary>
  2219. Returns a <see cref="T:CommonLang.Geometry.Vector2"/> with components 0, 1.
  2220. </summary>
  2221. </member>
  2222. <member name="M:CommonLang.Geometry.Vector2.#ctor(System.Single,System.Single)">
  2223. <summary>
  2224. Constructs a 2d vector with X and Y from two values.
  2225. </summary>
  2226. <param name="x">The x coordinate in 2d-space.</param>
  2227. <param name="y">The y coordinate in 2d-space.</param>
  2228. </member>
  2229. <member name="M:CommonLang.Geometry.Vector2.#ctor(System.Single)">
  2230. <summary>
  2231. Constructs a 2d vector with X and Y set to the same value.
  2232. </summary>
  2233. <param name="value">The x and y coordinates in 2d-space.</param>
  2234. </member>
  2235. <member name="M:CommonLang.Geometry.Vector2.op_UnaryNegation(CommonLang.Geometry.Vector2)">
  2236. <summary>
  2237. Inverts values in the specified <see cref="T:CommonLang.Geometry.Vector2"/>.
  2238. </summary>
  2239. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the right of the sub sign.</param>
  2240. <returns>Result of the inversion.</returns>
  2241. </member>
  2242. <member name="M:CommonLang.Geometry.Vector2.op_Addition(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2243. <summary>
  2244. Adds two vectors.
  2245. </summary>
  2246. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the left of the add sign.</param>
  2247. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the right of the add sign.</param>
  2248. <returns>Sum of the vectors.</returns>
  2249. </member>
  2250. <member name="M:CommonLang.Geometry.Vector2.op_Subtraction(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2251. <summary>
  2252. Subtracts a <see cref="T:CommonLang.Geometry.Vector2"/> from a <see cref="T:CommonLang.Geometry.Vector2"/>.
  2253. </summary>
  2254. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the left of the sub sign.</param>
  2255. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the right of the sub sign.</param>
  2256. <returns>Result of the vector subtraction.</returns>
  2257. </member>
  2258. <member name="M:CommonLang.Geometry.Vector2.op_Multiply(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2259. <summary>
  2260. Multiplies the components of two vectors by each other.
  2261. </summary>
  2262. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the left of the mul sign.</param>
  2263. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the right of the mul sign.</param>
  2264. <returns>Result of the vector multiplication.</returns>
  2265. </member>
  2266. <member name="M:CommonLang.Geometry.Vector2.op_Multiply(CommonLang.Geometry.Vector2,System.Single)">
  2267. <summary>
  2268. Multiplies the components of vector by a scalar.
  2269. </summary>
  2270. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the left of the mul sign.</param>
  2271. <param name="scaleFactor">Scalar value on the right of the mul sign.</param>
  2272. <returns>Result of the vector multiplication with a scalar.</returns>
  2273. </member>
  2274. <member name="M:CommonLang.Geometry.Vector2.op_Multiply(System.Single,CommonLang.Geometry.Vector2)">
  2275. <summary>
  2276. Multiplies the components of vector by a scalar.
  2277. </summary>
  2278. <param name="scaleFactor">Scalar value on the left of the mul sign.</param>
  2279. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the right of the mul sign.</param>
  2280. <returns>Result of the vector multiplication with a scalar.</returns>
  2281. </member>
  2282. <member name="M:CommonLang.Geometry.Vector2.op_Division(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2283. <summary>
  2284. Divides the components of a <see cref="T:CommonLang.Geometry.Vector2"/> by the components of another <see cref="T:CommonLang.Geometry.Vector2"/>.
  2285. </summary>
  2286. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the left of the div sign.</param>
  2287. <param name="value2">Divisor <see cref="T:CommonLang.Geometry.Vector2"/> on the right of the div sign.</param>
  2288. <returns>The result of dividing the vectors.</returns>
  2289. </member>
  2290. <member name="M:CommonLang.Geometry.Vector2.op_Division(CommonLang.Geometry.Vector2,System.Single)">
  2291. <summary>
  2292. Divides the components of a <see cref="T:CommonLang.Geometry.Vector2"/> by a scalar.
  2293. </summary>
  2294. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/> on the left of the div sign.</param>
  2295. <param name="divider">Divisor scalar on the right of the div sign.</param>
  2296. <returns>The result of dividing a vector by a scalar.</returns>
  2297. </member>
  2298. <member name="M:CommonLang.Geometry.Vector2.op_Equality(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2299. <summary>
  2300. Compares whether two <see cref="T:CommonLang.Geometry.Vector2"/> instances are equal.
  2301. </summary>
  2302. <param name="value1"><see cref="T:CommonLang.Geometry.Vector2"/> instance on the left of the equal sign.</param>
  2303. <param name="value2"><see cref="T:CommonLang.Geometry.Vector2"/> instance on the right of the equal sign.</param>
  2304. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  2305. </member>
  2306. <member name="M:CommonLang.Geometry.Vector2.op_Inequality(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2307. <summary>
  2308. Compares whether two <see cref="T:CommonLang.Geometry.Vector2"/> instances are not equal.
  2309. </summary>
  2310. <param name="value1"><see cref="T:CommonLang.Geometry.Vector2"/> instance on the left of the not equal sign.</param>
  2311. <param name="value2"><see cref="T:CommonLang.Geometry.Vector2"/> instance on the right of the not equal sign.</param>
  2312. <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  2313. </member>
  2314. <member name="M:CommonLang.Geometry.Vector2.Add(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2315. <summary>
  2316. Performs vector addition on <paramref name="value1"/> and <paramref name="value2"/>.
  2317. </summary>
  2318. <param name="value1">The first vector to add.</param>
  2319. <param name="value2">The second vector to add.</param>
  2320. <returns>The result of the vector addition.</returns>
  2321. </member>
  2322. <member name="M:CommonLang.Geometry.Vector2.Add(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2323. <summary>
  2324. Performs vector addition on <paramref name="value1"/> and
  2325. <paramref name="value2"/>, storing the result of the
  2326. addition in <paramref name="result"/>.
  2327. </summary>
  2328. <param name="value1">The first vector to add.</param>
  2329. <param name="value2">The second vector to add.</param>
  2330. <param name="result">The result of the vector addition.</param>
  2331. </member>
  2332. <member name="M:CommonLang.Geometry.Vector2.Barycentric(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,System.Single,System.Single)">
  2333. <summary>
  2334. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains the cartesian coordinates of a vector specified in barycentric coordinates and relative to 2d-triangle.
  2335. </summary>
  2336. <param name="value1">The first vector of 2d-triangle.</param>
  2337. <param name="value2">The second vector of 2d-triangle.</param>
  2338. <param name="value3">The third vector of 2d-triangle.</param>
  2339. <param name="amount1">Barycentric scalar <c>b2</c> which represents a weighting factor towards second vector of 2d-triangle.</param>
  2340. <param name="amount2">Barycentric scalar <c>b3</c> which represents a weighting factor towards third vector of 2d-triangle.</param>
  2341. <returns>The cartesian translation of barycentric coordinates.</returns>
  2342. </member>
  2343. <member name="M:CommonLang.Geometry.Vector2.Barycentric(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single,System.Single,CommonLang.Geometry.Vector2@)">
  2344. <summary>
  2345. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains the cartesian coordinates of a vector specified in barycentric coordinates and relative to 2d-triangle.
  2346. </summary>
  2347. <param name="value1">The first vector of 2d-triangle.</param>
  2348. <param name="value2">The second vector of 2d-triangle.</param>
  2349. <param name="value3">The third vector of 2d-triangle.</param>
  2350. <param name="amount1">Barycentric scalar <c>b2</c> which represents a weighting factor towards second vector of 2d-triangle.</param>
  2351. <param name="amount2">Barycentric scalar <c>b3</c> which represents a weighting factor towards third vector of 2d-triangle.</param>
  2352. <param name="result">The cartesian translation of barycentric coordinates as an output parameter.</param>
  2353. </member>
  2354. <member name="M:CommonLang.Geometry.Vector2.CatmullRom(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,System.Single)">
  2355. <summary>
  2356. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains CatmullRom interpolation of the specified vectors.
  2357. </summary>
  2358. <param name="value1">The first vector in interpolation.</param>
  2359. <param name="value2">The second vector in interpolation.</param>
  2360. <param name="value3">The third vector in interpolation.</param>
  2361. <param name="value4">The fourth vector in interpolation.</param>
  2362. <param name="amount">Weighting factor.</param>
  2363. <returns>The result of CatmullRom interpolation.</returns>
  2364. </member>
  2365. <member name="M:CommonLang.Geometry.Vector2.CatmullRom(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single,CommonLang.Geometry.Vector2@)">
  2366. <summary>
  2367. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains CatmullRom interpolation of the specified vectors.
  2368. </summary>
  2369. <param name="value1">The first vector in interpolation.</param>
  2370. <param name="value2">The second vector in interpolation.</param>
  2371. <param name="value3">The third vector in interpolation.</param>
  2372. <param name="value4">The fourth vector in interpolation.</param>
  2373. <param name="amount">Weighting factor.</param>
  2374. <param name="result">The result of CatmullRom interpolation as an output parameter.</param>
  2375. </member>
  2376. <member name="M:CommonLang.Geometry.Vector2.Clamp(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2377. <summary>
  2378. Clamps the specified value within a range.
  2379. </summary>
  2380. <param name="value1">The value to clamp.</param>
  2381. <param name="min">The min value.</param>
  2382. <param name="max">The max value.</param>
  2383. <returns>The clamped value.</returns>
  2384. </member>
  2385. <member name="M:CommonLang.Geometry.Vector2.Clamp(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2386. <summary>
  2387. Clamps the specified value within a range.
  2388. </summary>
  2389. <param name="value1">The value to clamp.</param>
  2390. <param name="min">The min value.</param>
  2391. <param name="max">The max value.</param>
  2392. <param name="result">The clamped value as an output parameter.</param>
  2393. </member>
  2394. <member name="M:CommonLang.Geometry.Vector2.Distance(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2395. <summary>
  2396. Returns the distance between two vectors.
  2397. </summary>
  2398. <param name="value1">The first vector.</param>
  2399. <param name="value2">The second vector.</param>
  2400. <returns>The distance between two vectors.</returns>
  2401. </member>
  2402. <member name="M:CommonLang.Geometry.Vector2.Distance(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single@)">
  2403. <summary>
  2404. Returns the distance between two vectors.
  2405. </summary>
  2406. <param name="value1">The first vector.</param>
  2407. <param name="value2">The second vector.</param>
  2408. <param name="result">The distance between two vectors as an output parameter.</param>
  2409. </member>
  2410. <member name="M:CommonLang.Geometry.Vector2.DistanceSquared(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2411. <summary>
  2412. Returns the squared distance between two vectors.
  2413. </summary>
  2414. <param name="value1">The first vector.</param>
  2415. <param name="value2">The second vector.</param>
  2416. <returns>The squared distance between two vectors.</returns>
  2417. </member>
  2418. <member name="M:CommonLang.Geometry.Vector2.DistanceSquared(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single@)">
  2419. <summary>
  2420. Returns the squared distance between two vectors.
  2421. </summary>
  2422. <param name="value1">The first vector.</param>
  2423. <param name="value2">The second vector.</param>
  2424. <param name="result">The squared distance between two vectors as an output parameter.</param>
  2425. </member>
  2426. <member name="M:CommonLang.Geometry.Vector2.Divide(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2427. <summary>
  2428. Divides the components of a <see cref="T:CommonLang.Geometry.Vector2"/> by the components of another <see cref="T:CommonLang.Geometry.Vector2"/>.
  2429. </summary>
  2430. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2431. <param name="value2">Divisor <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2432. <returns>The result of dividing the vectors.</returns>
  2433. </member>
  2434. <member name="M:CommonLang.Geometry.Vector2.Divide(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2435. <summary>
  2436. Divides the components of a <see cref="T:CommonLang.Geometry.Vector2"/> by the components of another <see cref="T:CommonLang.Geometry.Vector2"/>.
  2437. </summary>
  2438. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2439. <param name="value2">Divisor <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2440. <param name="result">The result of dividing the vectors as an output parameter.</param>
  2441. </member>
  2442. <member name="M:CommonLang.Geometry.Vector2.Divide(CommonLang.Geometry.Vector2,System.Single)">
  2443. <summary>
  2444. Divides the components of a <see cref="T:CommonLang.Geometry.Vector2"/> by a scalar.
  2445. </summary>
  2446. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2447. <param name="divider">Divisor scalar.</param>
  2448. <returns>The result of dividing a vector by a scalar.</returns>
  2449. </member>
  2450. <member name="M:CommonLang.Geometry.Vector2.Divide(CommonLang.Geometry.Vector2@,System.Single,CommonLang.Geometry.Vector2@)">
  2451. <summary>
  2452. Divides the components of a <see cref="T:CommonLang.Geometry.Vector2"/> by a scalar.
  2453. </summary>
  2454. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2455. <param name="divider">Divisor scalar.</param>
  2456. <param name="result">The result of dividing a vector by a scalar as an output parameter.</param>
  2457. </member>
  2458. <member name="M:CommonLang.Geometry.Vector2.Dot(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2459. <summary>
  2460. Returns a dot product of two vectors.
  2461. </summary>
  2462. <param name="value1">The first vector.</param>
  2463. <param name="value2">The second vector.</param>
  2464. <returns>The dot product of two vectors.</returns>
  2465. </member>
  2466. <member name="M:CommonLang.Geometry.Vector2.Dot(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single@)">
  2467. <summary>
  2468. Returns a dot product of two vectors.
  2469. </summary>
  2470. <param name="value1">The first vector.</param>
  2471. <param name="value2">The second vector.</param>
  2472. <param name="result">The dot product of two vectors as an output parameter.</param>
  2473. </member>
  2474. <member name="M:CommonLang.Geometry.Vector2.Equals(System.Object)">
  2475. <summary>
  2476. Compares whether current instance is equal to specified <see cref="T:System.Object"/>.
  2477. </summary>
  2478. <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
  2479. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  2480. </member>
  2481. <member name="M:CommonLang.Geometry.Vector2.Equals(CommonLang.Geometry.Vector2)">
  2482. <summary>
  2483. Compares whether current instance is equal to specified <see cref="T:CommonLang.Geometry.Vector2"/>.
  2484. </summary>
  2485. <param name="other">The <see cref="T:CommonLang.Geometry.Vector2"/> to compare.</param>
  2486. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  2487. </member>
  2488. <member name="M:CommonLang.Geometry.Vector2.GetHashCode">
  2489. <summary>
  2490. Gets the hash code of this <see cref="T:CommonLang.Geometry.Vector2"/>.
  2491. </summary>
  2492. <returns>Hash code of this <see cref="T:CommonLang.Geometry.Vector2"/>.</returns>
  2493. </member>
  2494. <member name="M:CommonLang.Geometry.Vector2.Hermite(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,System.Single)">
  2495. <summary>
  2496. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains hermite spline interpolation.
  2497. </summary>
  2498. <param name="value1">The first position vector.</param>
  2499. <param name="tangent1">The first tangent vector.</param>
  2500. <param name="value2">The second position vector.</param>
  2501. <param name="tangent2">The second tangent vector.</param>
  2502. <param name="amount">Weighting factor.</param>
  2503. <returns>The hermite spline interpolation vector.</returns>
  2504. </member>
  2505. <member name="M:CommonLang.Geometry.Vector2.Hermite(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single,CommonLang.Geometry.Vector2@)">
  2506. <summary>
  2507. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains hermite spline interpolation.
  2508. </summary>
  2509. <param name="value1">The first position vector.</param>
  2510. <param name="tangent1">The first tangent vector.</param>
  2511. <param name="value2">The second position vector.</param>
  2512. <param name="tangent2">The second tangent vector.</param>
  2513. <param name="amount">Weighting factor.</param>
  2514. <param name="result">The hermite spline interpolation vector as an output parameter.</param>
  2515. </member>
  2516. <member name="M:CommonLang.Geometry.Vector2.Length">
  2517. <summary>
  2518. Returns the length of this <see cref="T:CommonLang.Geometry.Vector2"/>.
  2519. </summary>
  2520. <returns>The length of this <see cref="T:CommonLang.Geometry.Vector2"/>.</returns>
  2521. </member>
  2522. <member name="M:CommonLang.Geometry.Vector2.LengthSquared">
  2523. <summary>
  2524. Returns the squared length of this <see cref="T:CommonLang.Geometry.Vector2"/>.
  2525. </summary>
  2526. <returns>The squared length of this <see cref="T:CommonLang.Geometry.Vector2"/>.</returns>
  2527. </member>
  2528. <member name="M:CommonLang.Geometry.Vector2.Lerp(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,System.Single)">
  2529. <summary>
  2530. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains linear interpolation of the specified vectors.
  2531. </summary>
  2532. <param name="value1">The first vector.</param>
  2533. <param name="value2">The second vector.</param>
  2534. <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  2535. <returns>The result of linear interpolation of the specified vectors.</returns>
  2536. </member>
  2537. <member name="M:CommonLang.Geometry.Vector2.Lerp(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single,CommonLang.Geometry.Vector2@)">
  2538. <summary>
  2539. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains linear interpolation of the specified vectors.
  2540. </summary>
  2541. <param name="value1">The first vector.</param>
  2542. <param name="value2">The second vector.</param>
  2543. <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  2544. <param name="result">The result of linear interpolation of the specified vectors as an output parameter.</param>
  2545. </member>
  2546. <member name="M:CommonLang.Geometry.Vector2.Max(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2547. <summary>
  2548. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a maximal values from the two vectors.
  2549. </summary>
  2550. <param name="value1">The first vector.</param>
  2551. <param name="value2">The second vector.</param>
  2552. <returns>The <see cref="T:CommonLang.Geometry.Vector2"/> with maximal values from the two vectors.</returns>
  2553. </member>
  2554. <member name="M:CommonLang.Geometry.Vector2.Max(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2555. <summary>
  2556. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a maximal values from the two vectors.
  2557. </summary>
  2558. <param name="value1">The first vector.</param>
  2559. <param name="value2">The second vector.</param>
  2560. <param name="result">The <see cref="T:CommonLang.Geometry.Vector2"/> with maximal values from the two vectors as an output parameter.</param>
  2561. </member>
  2562. <member name="M:CommonLang.Geometry.Vector2.Min(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2563. <summary>
  2564. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a minimal values from the two vectors.
  2565. </summary>
  2566. <param name="value1">The first vector.</param>
  2567. <param name="value2">The second vector.</param>
  2568. <returns>The <see cref="T:CommonLang.Geometry.Vector2"/> with minimal values from the two vectors.</returns>
  2569. </member>
  2570. <member name="M:CommonLang.Geometry.Vector2.Min(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2571. <summary>
  2572. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a minimal values from the two vectors.
  2573. </summary>
  2574. <param name="value1">The first vector.</param>
  2575. <param name="value2">The second vector.</param>
  2576. <param name="result">The <see cref="T:CommonLang.Geometry.Vector2"/> with minimal values from the two vectors as an output parameter.</param>
  2577. </member>
  2578. <member name="M:CommonLang.Geometry.Vector2.Multiply(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2579. <summary>
  2580. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a multiplication of two vectors.
  2581. </summary>
  2582. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2583. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2584. <returns>The result of the vector multiplication.</returns>
  2585. </member>
  2586. <member name="M:CommonLang.Geometry.Vector2.Multiply(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2587. <summary>
  2588. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a multiplication of two vectors.
  2589. </summary>
  2590. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2591. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2592. <param name="result">The result of the vector multiplication as an output parameter.</param>
  2593. </member>
  2594. <member name="M:CommonLang.Geometry.Vector2.Multiply(CommonLang.Geometry.Vector2,System.Single)">
  2595. <summary>
  2596. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a multiplication of <see cref="T:CommonLang.Geometry.Vector2"/> and a scalar.
  2597. </summary>
  2598. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2599. <param name="scaleFactor">Scalar value.</param>
  2600. <returns>The result of the vector multiplication with a scalar.</returns>
  2601. </member>
  2602. <member name="M:CommonLang.Geometry.Vector2.Multiply(CommonLang.Geometry.Vector2@,System.Single,CommonLang.Geometry.Vector2@)">
  2603. <summary>
  2604. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a multiplication of <see cref="T:CommonLang.Geometry.Vector2"/> and a scalar.
  2605. </summary>
  2606. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2607. <param name="scaleFactor">Scalar value.</param>
  2608. <param name="result">The result of the multiplication with a scalar as an output parameter.</param>
  2609. </member>
  2610. <member name="M:CommonLang.Geometry.Vector2.Negate(CommonLang.Geometry.Vector2)">
  2611. <summary>
  2612. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains the specified vector inversion.
  2613. </summary>
  2614. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2615. <returns>The result of the vector inversion.</returns>
  2616. </member>
  2617. <member name="M:CommonLang.Geometry.Vector2.Negate(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2618. <summary>
  2619. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains the specified vector inversion.
  2620. </summary>
  2621. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2622. <param name="result">The result of the vector inversion as an output parameter.</param>
  2623. </member>
  2624. <member name="M:CommonLang.Geometry.Vector2.Normalize">
  2625. <summary>
  2626. Turns this <see cref="T:CommonLang.Geometry.Vector2"/> to a unit vector with the same direction.
  2627. </summary>
  2628. </member>
  2629. <member name="M:CommonLang.Geometry.Vector2.Normalize(CommonLang.Geometry.Vector2)">
  2630. <summary>
  2631. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a normalized values from another vector.
  2632. </summary>
  2633. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2634. <returns>Unit vector.</returns>
  2635. </member>
  2636. <member name="M:CommonLang.Geometry.Vector2.Normalize(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2637. <summary>
  2638. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a normalized values from another vector.
  2639. </summary>
  2640. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2641. <param name="result">Unit vector as an output parameter.</param>
  2642. </member>
  2643. <member name="M:CommonLang.Geometry.Vector2.Reflect(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2644. <summary>
  2645. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains reflect vector of the given vector and normal.
  2646. </summary>
  2647. <param name="vector">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2648. <param name="normal">Reflection normal.</param>
  2649. <returns>Reflected vector.</returns>
  2650. </member>
  2651. <member name="M:CommonLang.Geometry.Vector2.Reflect(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2652. <summary>
  2653. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains reflect vector of the given vector and normal.
  2654. </summary>
  2655. <param name="vector">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2656. <param name="normal">Reflection normal.</param>
  2657. <param name="result">Reflected vector as an output parameter.</param>
  2658. </member>
  2659. <member name="M:CommonLang.Geometry.Vector2.SmoothStep(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2,System.Single)">
  2660. <summary>
  2661. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains cubic interpolation of the specified vectors.
  2662. </summary>
  2663. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2664. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2665. <param name="amount">Weighting value.</param>
  2666. <returns>Cubic interpolation of the specified vectors.</returns>
  2667. </member>
  2668. <member name="M:CommonLang.Geometry.Vector2.SmoothStep(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,System.Single,CommonLang.Geometry.Vector2@)">
  2669. <summary>
  2670. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains cubic interpolation of the specified vectors.
  2671. </summary>
  2672. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2673. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2674. <param name="amount">Weighting value.</param>
  2675. <param name="result">Cubic interpolation of the specified vectors as an output parameter.</param>
  2676. </member>
  2677. <member name="M:CommonLang.Geometry.Vector2.Subtract(CommonLang.Geometry.Vector2,CommonLang.Geometry.Vector2)">
  2678. <summary>
  2679. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains subtraction of on <see cref="T:CommonLang.Geometry.Vector2"/> from a another.
  2680. </summary>
  2681. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2682. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2683. <returns>The result of the vector subtraction.</returns>
  2684. </member>
  2685. <member name="M:CommonLang.Geometry.Vector2.Subtract(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  2686. <summary>
  2687. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains subtraction of on <see cref="T:CommonLang.Geometry.Vector2"/> from a another.
  2688. </summary>
  2689. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2690. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2691. <param name="result">The result of the vector subtraction as an output parameter.</param>
  2692. </member>
  2693. <member name="M:CommonLang.Geometry.Vector2.ToString">
  2694. <summary>
  2695. Returns a <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Vector2"/> in the format:
  2696. {X:[<see cref="F:CommonLang.Geometry.Vector2.X"/>] Y:[<see cref="F:CommonLang.Geometry.Vector2.Y"/>]}
  2697. </summary>
  2698. <returns>A <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Vector2"/>.</returns>
  2699. </member>
  2700. <member name="M:CommonLang.Geometry.Vector2.ToPoint">
  2701. <summary>
  2702. Gets a <see cref="T:CommonLang.Geometry.Point"/> representation for this object.
  2703. </summary>
  2704. <returns>A <see cref="T:CommonLang.Geometry.Point"/> representation for this object.</returns>
  2705. </member>
  2706. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2,CommonLang.Geometry.Matrix)">
  2707. <summary>
  2708. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a transformation of vector(position.X,position.Y,0,1) by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  2709. </summary>
  2710. <param name="position">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2711. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2712. <returns>Transformed <see cref="T:CommonLang.Geometry.Vector2"/>.</returns>
  2713. </member>
  2714. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector2@)">
  2715. <summary>
  2716. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a transformation of vector(position.X,position.Y,0,1) by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  2717. </summary>
  2718. <param name="position">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2719. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2720. <param name="result">Transformed <see cref="T:CommonLang.Geometry.Vector2"/> as an output parameter.</param>
  2721. </member>
  2722. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2,CommonLang.Geometry.Quaternion)">
  2723. <summary>
  2724. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a transformation of vector(position.X,position.Y,0,0) by the specified <see cref="T:CommonLang.Geometry.Quaternion"/>, representing the rotation.
  2725. </summary>
  2726. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2727. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  2728. <returns>Transformed <see cref="T:CommonLang.Geometry.Vector2"/>.</returns>
  2729. </member>
  2730. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Vector2@)">
  2731. <summary>
  2732. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a transformation of vector(position.X,position.Y,0,0) by the specified <see cref="T:CommonLang.Geometry.Quaternion"/>, representing the rotation.
  2733. </summary>
  2734. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector2"/>.</param>
  2735. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  2736. <param name="result">Transformed <see cref="T:CommonLang.Geometry.Vector2"/> as an output parameter.</param>
  2737. </member>
  2738. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2[],System.Int32,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector2[],System.Int32,System.Int32)">
  2739. <summary>
  2740. Apply transformation on vectors within array of <see cref="T:CommonLang.Geometry.Vector2"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  2741. </summary>
  2742. <param name="sourceArray">Source array.</param>
  2743. <param name="sourceIndex">The starting index of transformation in the source array.</param>
  2744. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2745. <param name="destinationArray">Destination array.</param>
  2746. <param name="destinationIndex">The starting index in the destination array, where the first <see cref="T:CommonLang.Geometry.Vector2"/> should be written.</param>
  2747. <param name="length">The number of vectors to be transformed.</param>
  2748. </member>
  2749. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2[],System.Int32,CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Vector2[],System.Int32,System.Int32)">
  2750. <summary>
  2751. Apply transformation on vectors within array of <see cref="T:CommonLang.Geometry.Vector2"/> by the specified <see cref="T:CommonLang.Geometry.Quaternion"/> and places the results in an another array.
  2752. </summary>
  2753. <param name="sourceArray">Source array.</param>
  2754. <param name="sourceIndex">The starting index of transformation in the source array.</param>
  2755. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  2756. <param name="destinationArray">Destination array.</param>
  2757. <param name="destinationIndex">The starting index in the destination array, where the first <see cref="T:CommonLang.Geometry.Vector2"/> should be written.</param>
  2758. <param name="length">The number of vectors to be transformed.</param>
  2759. </member>
  2760. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2[],CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector2[])">
  2761. <summary>
  2762. Apply transformation on all vectors within array of <see cref="T:CommonLang.Geometry.Vector2"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  2763. </summary>
  2764. <param name="sourceArray">Source array.</param>
  2765. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2766. <param name="destinationArray">Destination array.</param>
  2767. </member>
  2768. <member name="M:CommonLang.Geometry.Vector2.Transform(CommonLang.Geometry.Vector2[],CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Vector2[])">
  2769. <summary>
  2770. Apply transformation on all vectors within array of <see cref="T:CommonLang.Geometry.Vector2"/> by the specified <see cref="T:CommonLang.Geometry.Quaternion"/> and places the results in an another array.
  2771. </summary>
  2772. <param name="sourceArray">Source array.</param>
  2773. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  2774. <param name="destinationArray">Destination array.</param>
  2775. </member>
  2776. <member name="M:CommonLang.Geometry.Vector2.TransformNormal(CommonLang.Geometry.Vector2,CommonLang.Geometry.Matrix)">
  2777. <summary>
  2778. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a transformation of the specified normal by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  2779. </summary>
  2780. <param name="normal">Source <see cref="T:CommonLang.Geometry.Vector2"/> which represents a normal vector.</param>
  2781. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2782. <returns>Transformed normal.</returns>
  2783. </member>
  2784. <member name="M:CommonLang.Geometry.Vector2.TransformNormal(CommonLang.Geometry.Vector2@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector2@)">
  2785. <summary>
  2786. Creates a new <see cref="T:CommonLang.Geometry.Vector2"/> that contains a transformation of the specified normal by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  2787. </summary>
  2788. <param name="normal">Source <see cref="T:CommonLang.Geometry.Vector2"/> which represents a normal vector.</param>
  2789. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2790. <param name="result">Transformed normal as an output parameter.</param>
  2791. </member>
  2792. <member name="M:CommonLang.Geometry.Vector2.TransformNormal(CommonLang.Geometry.Vector2[],System.Int32,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector2[],System.Int32,System.Int32)">
  2793. <summary>
  2794. Apply transformation on normals within array of <see cref="T:CommonLang.Geometry.Vector2"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  2795. </summary>
  2796. <param name="sourceArray">Source array.</param>
  2797. <param name="sourceIndex">The starting index of transformation in the source array.</param>
  2798. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2799. <param name="destinationArray">Destination array.</param>
  2800. <param name="destinationIndex">The starting index in the destination array, where the first <see cref="T:CommonLang.Geometry.Vector2"/> should be written.</param>
  2801. <param name="length">The number of normals to be transformed.</param>
  2802. </member>
  2803. <member name="M:CommonLang.Geometry.Vector2.TransformNormal(CommonLang.Geometry.Vector2[],CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector2[])">
  2804. <summary>
  2805. Apply transformation on all normals within array of <see cref="T:CommonLang.Geometry.Vector2"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  2806. </summary>
  2807. <param name="sourceArray">Source array.</param>
  2808. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  2809. <param name="destinationArray">Destination array.</param>
  2810. </member>
  2811. <member name="F:CommonLang.Geometry.Vector3.X">
  2812. <summary>
  2813. The x coordinate of this <see cref="T:CommonLang.Geometry.Vector3"/>.
  2814. </summary>
  2815. </member>
  2816. <member name="F:CommonLang.Geometry.Vector3.Y">
  2817. <summary>
  2818. The y coordinate of this <see cref="T:CommonLang.Geometry.Vector3"/>.
  2819. </summary>
  2820. </member>
  2821. <member name="F:CommonLang.Geometry.Vector3.Z">
  2822. <summary>
  2823. The z coordinate of this <see cref="T:CommonLang.Geometry.Vector3"/>.
  2824. </summary>
  2825. </member>
  2826. <member name="P:CommonLang.Geometry.Vector3.Zero">
  2827. <summary>
  2828. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 0, 0, 0.
  2829. </summary>
  2830. </member>
  2831. <member name="P:CommonLang.Geometry.Vector3.One">
  2832. <summary>
  2833. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 1, 1, 1.
  2834. </summary>
  2835. </member>
  2836. <member name="P:CommonLang.Geometry.Vector3.UnitX">
  2837. <summary>
  2838. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 1, 0, 0.
  2839. </summary>
  2840. </member>
  2841. <member name="P:CommonLang.Geometry.Vector3.UnitY">
  2842. <summary>
  2843. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 0, 1, 0.
  2844. </summary>
  2845. </member>
  2846. <member name="P:CommonLang.Geometry.Vector3.UnitZ">
  2847. <summary>
  2848. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 0, 0, 1.
  2849. </summary>
  2850. </member>
  2851. <member name="P:CommonLang.Geometry.Vector3.Up">
  2852. <summary>
  2853. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 0, 1, 0.
  2854. </summary>
  2855. </member>
  2856. <member name="P:CommonLang.Geometry.Vector3.Down">
  2857. <summary>
  2858. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 0, -1, 0.
  2859. </summary>
  2860. </member>
  2861. <member name="P:CommonLang.Geometry.Vector3.Right">
  2862. <summary>
  2863. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 1, 0, 0.
  2864. </summary>
  2865. </member>
  2866. <member name="P:CommonLang.Geometry.Vector3.Left">
  2867. <summary>
  2868. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components -1, 0, 0.
  2869. </summary>
  2870. </member>
  2871. <member name="P:CommonLang.Geometry.Vector3.Forward">
  2872. <summary>
  2873. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 0, 0, -1.
  2874. </summary>
  2875. </member>
  2876. <member name="P:CommonLang.Geometry.Vector3.Backward">
  2877. <summary>
  2878. Returns a <see cref="T:CommonLang.Geometry.Vector3"/> with components 0, 0, 1.
  2879. </summary>
  2880. </member>
  2881. <member name="M:CommonLang.Geometry.Vector3.#ctor(System.Single,System.Single,System.Single)">
  2882. <summary>
  2883. Constructs a 3d vector with X, Y and Z from three values.
  2884. </summary>
  2885. <param name="x">The x coordinate in 3d-space.</param>
  2886. <param name="y">The y coordinate in 3d-space.</param>
  2887. <param name="z">The z coordinate in 3d-space.</param>
  2888. </member>
  2889. <member name="M:CommonLang.Geometry.Vector3.#ctor(System.Single)">
  2890. <summary>
  2891. Constructs a 3d vector with X, Y and Z set to the same value.
  2892. </summary>
  2893. <param name="value">The x, y and z coordinates in 3d-space.</param>
  2894. </member>
  2895. <member name="M:CommonLang.Geometry.Vector3.#ctor(CommonLang.Geometry.Vector2,System.Single)">
  2896. <summary>
  2897. Constructs a 3d vector with X, Y from <see cref="T:CommonLang.Geometry.Vector2"/> and Z from a scalar.
  2898. </summary>
  2899. <param name="value">The x and y coordinates in 3d-space.</param>
  2900. <param name="z">The z coordinate in 3d-space.</param>
  2901. </member>
  2902. <member name="M:CommonLang.Geometry.Vector3.Add(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  2903. <summary>
  2904. Performs vector addition on <paramref name="value1"/> and <paramref name="value2"/>.
  2905. </summary>
  2906. <param name="value1">The first vector to add.</param>
  2907. <param name="value2">The second vector to add.</param>
  2908. <returns>The result of the vector addition.</returns>
  2909. </member>
  2910. <member name="M:CommonLang.Geometry.Vector3.Add(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  2911. <summary>
  2912. Performs vector addition on <paramref name="value1"/> and
  2913. <paramref name="value2"/>, storing the result of the
  2914. addition in <paramref name="result"/>.
  2915. </summary>
  2916. <param name="value1">The first vector to add.</param>
  2917. <param name="value2">The second vector to add.</param>
  2918. <param name="result">The result of the vector addition.</param>
  2919. </member>
  2920. <member name="M:CommonLang.Geometry.Vector3.Barycentric(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,System.Single,System.Single)">
  2921. <summary>
  2922. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains the cartesian coordinates of a vector specified in barycentric coordinates and relative to 3d-triangle.
  2923. </summary>
  2924. <param name="value1">The first vector of 3d-triangle.</param>
  2925. <param name="value2">The second vector of 3d-triangle.</param>
  2926. <param name="value3">The third vector of 3d-triangle.</param>
  2927. <param name="amount1">Barycentric scalar <c>b2</c> which represents a weighting factor towards second vector of 3d-triangle.</param>
  2928. <param name="amount2">Barycentric scalar <c>b3</c> which represents a weighting factor towards third vector of 3d-triangle.</param>
  2929. <returns>The cartesian translation of barycentric coordinates.</returns>
  2930. </member>
  2931. <member name="M:CommonLang.Geometry.Vector3.Barycentric(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single,System.Single,CommonLang.Geometry.Vector3@)">
  2932. <summary>
  2933. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains the cartesian coordinates of a vector specified in barycentric coordinates and relative to 3d-triangle.
  2934. </summary>
  2935. <param name="value1">The first vector of 3d-triangle.</param>
  2936. <param name="value2">The second vector of 3d-triangle.</param>
  2937. <param name="value3">The third vector of 3d-triangle.</param>
  2938. <param name="amount1">Barycentric scalar <c>b2</c> which represents a weighting factor towards second vector of 3d-triangle.</param>
  2939. <param name="amount2">Barycentric scalar <c>b3</c> which represents a weighting factor towards third vector of 3d-triangle.</param>
  2940. <param name="result">The cartesian translation of barycentric coordinates as an output parameter.</param>
  2941. </member>
  2942. <member name="M:CommonLang.Geometry.Vector3.CatmullRom(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,System.Single)">
  2943. <summary>
  2944. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains CatmullRom interpolation of the specified vectors.
  2945. </summary>
  2946. <param name="value1">The first vector in interpolation.</param>
  2947. <param name="value2">The second vector in interpolation.</param>
  2948. <param name="value3">The third vector in interpolation.</param>
  2949. <param name="value4">The fourth vector in interpolation.</param>
  2950. <param name="amount">Weighting factor.</param>
  2951. <returns>The result of CatmullRom interpolation.</returns>
  2952. </member>
  2953. <member name="M:CommonLang.Geometry.Vector3.CatmullRom(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single,CommonLang.Geometry.Vector3@)">
  2954. <summary>
  2955. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains CatmullRom interpolation of the specified vectors.
  2956. </summary>
  2957. <param name="value1">The first vector in interpolation.</param>
  2958. <param name="value2">The second vector in interpolation.</param>
  2959. <param name="value3">The third vector in interpolation.</param>
  2960. <param name="value4">The fourth vector in interpolation.</param>
  2961. <param name="amount">Weighting factor.</param>
  2962. <param name="result">The result of CatmullRom interpolation as an output parameter.</param>
  2963. </member>
  2964. <member name="M:CommonLang.Geometry.Vector3.Clamp(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  2965. <summary>
  2966. Clamps the specified value within a range.
  2967. </summary>
  2968. <param name="value1">The value to clamp.</param>
  2969. <param name="min">The min value.</param>
  2970. <param name="max">The max value.</param>
  2971. <returns>The clamped value.</returns>
  2972. </member>
  2973. <member name="M:CommonLang.Geometry.Vector3.Clamp(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  2974. <summary>
  2975. Clamps the specified value within a range.
  2976. </summary>
  2977. <param name="value1">The value to clamp.</param>
  2978. <param name="min">The min value.</param>
  2979. <param name="max">The max value.</param>
  2980. <param name="result">The clamped value as an output parameter.</param>
  2981. </member>
  2982. <member name="M:CommonLang.Geometry.Vector3.Cross(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  2983. <summary>
  2984. Computes the cross product of two vectors.
  2985. </summary>
  2986. <param name="vector1">The first vector.</param>
  2987. <param name="vector2">The second vector.</param>
  2988. <returns>The cross product of two vectors.</returns>
  2989. </member>
  2990. <member name="M:CommonLang.Geometry.Vector3.Cross(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  2991. <summary>
  2992. Computes the cross product of two vectors.
  2993. </summary>
  2994. <param name="vector1">The first vector.</param>
  2995. <param name="vector2">The second vector.</param>
  2996. <param name="result">The cross product of two vectors as an output parameter.</param>
  2997. </member>
  2998. <member name="M:CommonLang.Geometry.Vector3.Distance(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  2999. <summary>
  3000. Returns the distance between two vectors.
  3001. </summary>
  3002. <param name="value1">The first vector.</param>
  3003. <param name="value2">The second vector.</param>
  3004. <returns>The distance between two vectors.</returns>
  3005. </member>
  3006. <member name="M:CommonLang.Geometry.Vector3.Distance(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single@)">
  3007. <summary>
  3008. Returns the distance between two vectors.
  3009. </summary>
  3010. <param name="value1">The first vector.</param>
  3011. <param name="value2">The second vector.</param>
  3012. <param name="result">The distance between two vectors as an output parameter.</param>
  3013. </member>
  3014. <member name="M:CommonLang.Geometry.Vector3.DistanceSquared(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3015. <summary>
  3016. Returns the squared distance between two vectors.
  3017. </summary>
  3018. <param name="value1">The first vector.</param>
  3019. <param name="value2">The second vector.</param>
  3020. <returns>The squared distance between two vectors.</returns>
  3021. </member>
  3022. <member name="M:CommonLang.Geometry.Vector3.DistanceSquared(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single@)">
  3023. <summary>
  3024. Returns the squared distance between two vectors.
  3025. </summary>
  3026. <param name="value1">The first vector.</param>
  3027. <param name="value2">The second vector.</param>
  3028. <param name="result">The squared distance between two vectors as an output parameter.</param>
  3029. </member>
  3030. <member name="M:CommonLang.Geometry.Vector3.Divide(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3031. <summary>
  3032. Divides the components of a <see cref="T:CommonLang.Geometry.Vector3"/> by the components of another <see cref="T:CommonLang.Geometry.Vector3"/>.
  3033. </summary>
  3034. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3035. <param name="value2">Divisor <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3036. <returns>The result of dividing the vectors.</returns>
  3037. </member>
  3038. <member name="M:CommonLang.Geometry.Vector3.Divide(CommonLang.Geometry.Vector3,System.Single)">
  3039. <summary>
  3040. Divides the components of a <see cref="T:CommonLang.Geometry.Vector3"/> by a scalar.
  3041. </summary>
  3042. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3043. <param name="divider">Divisor scalar.</param>
  3044. <returns>The result of dividing a vector by a scalar.</returns>
  3045. </member>
  3046. <member name="M:CommonLang.Geometry.Vector3.Divide(CommonLang.Geometry.Vector3@,System.Single,CommonLang.Geometry.Vector3@)">
  3047. <summary>
  3048. Divides the components of a <see cref="T:CommonLang.Geometry.Vector3"/> by a scalar.
  3049. </summary>
  3050. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3051. <param name="divider">Divisor scalar.</param>
  3052. <param name="result">The result of dividing a vector by a scalar as an output parameter.</param>
  3053. </member>
  3054. <member name="M:CommonLang.Geometry.Vector3.Divide(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3055. <summary>
  3056. Divides the components of a <see cref="T:CommonLang.Geometry.Vector3"/> by the components of another <see cref="T:CommonLang.Geometry.Vector3"/>.
  3057. </summary>
  3058. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3059. <param name="value2">Divisor <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3060. <param name="result">The result of dividing the vectors as an output parameter.</param>
  3061. </member>
  3062. <member name="M:CommonLang.Geometry.Vector3.Dot(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3063. <summary>
  3064. Returns a dot product of two vectors.
  3065. </summary>
  3066. <param name="value1">The first vector.</param>
  3067. <param name="value2">The second vector.</param>
  3068. <returns>The dot product of two vectors.</returns>
  3069. </member>
  3070. <member name="M:CommonLang.Geometry.Vector3.Dot(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single@)">
  3071. <summary>
  3072. Returns a dot product of two vectors.
  3073. </summary>
  3074. <param name="value1">The first vector.</param>
  3075. <param name="value2">The second vector.</param>
  3076. <param name="result">The dot product of two vectors as an output parameter.</param>
  3077. </member>
  3078. <member name="M:CommonLang.Geometry.Vector3.Equals(System.Object)">
  3079. <summary>
  3080. Compares whether current instance is equal to specified <see cref="T:System.Object"/>.
  3081. </summary>
  3082. <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
  3083. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  3084. </member>
  3085. <member name="M:CommonLang.Geometry.Vector3.Equals(CommonLang.Geometry.Vector3)">
  3086. <summary>
  3087. Compares whether current instance is equal to specified <see cref="T:CommonLang.Geometry.Vector3"/>.
  3088. </summary>
  3089. <param name="other">The <see cref="T:CommonLang.Geometry.Vector3"/> to compare.</param>
  3090. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  3091. </member>
  3092. <member name="M:CommonLang.Geometry.Vector3.GetHashCode">
  3093. <summary>
  3094. Gets the hash code of this <see cref="T:CommonLang.Geometry.Vector3"/>.
  3095. </summary>
  3096. <returns>Hash code of this <see cref="T:CommonLang.Geometry.Vector3"/>.</returns>
  3097. </member>
  3098. <member name="M:CommonLang.Geometry.Vector3.Hermite(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,System.Single)">
  3099. <summary>
  3100. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains hermite spline interpolation.
  3101. </summary>
  3102. <param name="value1">The first position vector.</param>
  3103. <param name="tangent1">The first tangent vector.</param>
  3104. <param name="value2">The second position vector.</param>
  3105. <param name="tangent2">The second tangent vector.</param>
  3106. <param name="amount">Weighting factor.</param>
  3107. <returns>The hermite spline interpolation vector.</returns>
  3108. </member>
  3109. <member name="M:CommonLang.Geometry.Vector3.Hermite(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single,CommonLang.Geometry.Vector3@)">
  3110. <summary>
  3111. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains hermite spline interpolation.
  3112. </summary>
  3113. <param name="value1">The first position vector.</param>
  3114. <param name="tangent1">The first tangent vector.</param>
  3115. <param name="value2">The second position vector.</param>
  3116. <param name="tangent2">The second tangent vector.</param>
  3117. <param name="amount">Weighting factor.</param>
  3118. <param name="result">The hermite spline interpolation vector as an output parameter.</param>
  3119. </member>
  3120. <member name="M:CommonLang.Geometry.Vector3.Length">
  3121. <summary>
  3122. Returns the length of this <see cref="T:CommonLang.Geometry.Vector3"/>.
  3123. </summary>
  3124. <returns>The length of this <see cref="T:CommonLang.Geometry.Vector3"/>.</returns>
  3125. </member>
  3126. <member name="M:CommonLang.Geometry.Vector3.LengthSquared">
  3127. <summary>
  3128. Returns the squared length of this <see cref="T:CommonLang.Geometry.Vector3"/>.
  3129. </summary>
  3130. <returns>The squared length of this <see cref="T:CommonLang.Geometry.Vector3"/>.</returns>
  3131. </member>
  3132. <member name="M:CommonLang.Geometry.Vector3.Lerp(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,System.Single)">
  3133. <summary>
  3134. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains linear interpolation of the specified vectors.
  3135. </summary>
  3136. <param name="value1">The first vector.</param>
  3137. <param name="value2">The second vector.</param>
  3138. <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  3139. <returns>The result of linear interpolation of the specified vectors.</returns>
  3140. </member>
  3141. <member name="M:CommonLang.Geometry.Vector3.Lerp(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single,CommonLang.Geometry.Vector3@)">
  3142. <summary>
  3143. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains linear interpolation of the specified vectors.
  3144. </summary>
  3145. <param name="value1">The first vector.</param>
  3146. <param name="value2">The second vector.</param>
  3147. <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  3148. <param name="result">The result of linear interpolation of the specified vectors as an output parameter.</param>
  3149. </member>
  3150. <member name="M:CommonLang.Geometry.Vector3.Max(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3151. <summary>
  3152. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a maximal values from the two vectors.
  3153. </summary>
  3154. <param name="value1">The first vector.</param>
  3155. <param name="value2">The second vector.</param>
  3156. <returns>The <see cref="T:CommonLang.Geometry.Vector3"/> with maximal values from the two vectors.</returns>
  3157. </member>
  3158. <member name="M:CommonLang.Geometry.Vector3.Max(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3159. <summary>
  3160. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a maximal values from the two vectors.
  3161. </summary>
  3162. <param name="value1">The first vector.</param>
  3163. <param name="value2">The second vector.</param>
  3164. <param name="result">The <see cref="T:CommonLang.Geometry.Vector3"/> with maximal values from the two vectors as an output parameter.</param>
  3165. </member>
  3166. <member name="M:CommonLang.Geometry.Vector3.Min(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3167. <summary>
  3168. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a minimal values from the two vectors.
  3169. </summary>
  3170. <param name="value1">The first vector.</param>
  3171. <param name="value2">The second vector.</param>
  3172. <returns>The <see cref="T:CommonLang.Geometry.Vector3"/> with minimal values from the two vectors.</returns>
  3173. </member>
  3174. <member name="M:CommonLang.Geometry.Vector3.Min(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3175. <summary>
  3176. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a minimal values from the two vectors.
  3177. </summary>
  3178. <param name="value1">The first vector.</param>
  3179. <param name="value2">The second vector.</param>
  3180. <param name="result">The <see cref="T:CommonLang.Geometry.Vector3"/> with minimal values from the two vectors as an output parameter.</param>
  3181. </member>
  3182. <member name="M:CommonLang.Geometry.Vector3.Multiply(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3183. <summary>
  3184. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a multiplication of two vectors.
  3185. </summary>
  3186. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3187. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3188. <returns>The result of the vector multiplication.</returns>
  3189. </member>
  3190. <member name="M:CommonLang.Geometry.Vector3.Multiply(CommonLang.Geometry.Vector3,System.Single)">
  3191. <summary>
  3192. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a multiplication of <see cref="T:CommonLang.Geometry.Vector3"/> and a scalar.
  3193. </summary>
  3194. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3195. <param name="scaleFactor">Scalar value.</param>
  3196. <returns>The result of the vector multiplication with a scalar.</returns>
  3197. </member>
  3198. <member name="M:CommonLang.Geometry.Vector3.Multiply(CommonLang.Geometry.Vector3@,System.Single,CommonLang.Geometry.Vector3@)">
  3199. <summary>
  3200. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a multiplication of <see cref="T:CommonLang.Geometry.Vector3"/> and a scalar.
  3201. </summary>
  3202. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3203. <param name="scaleFactor">Scalar value.</param>
  3204. <param name="result">The result of the multiplication with a scalar as an output parameter.</param>
  3205. </member>
  3206. <member name="M:CommonLang.Geometry.Vector3.Multiply(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3207. <summary>
  3208. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a multiplication of two vectors.
  3209. </summary>
  3210. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3211. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3212. <param name="result">The result of the vector multiplication as an output parameter.</param>
  3213. </member>
  3214. <member name="M:CommonLang.Geometry.Vector3.Negate(CommonLang.Geometry.Vector3)">
  3215. <summary>
  3216. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains the specified vector inversion.
  3217. </summary>
  3218. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3219. <returns>The result of the vector inversion.</returns>
  3220. </member>
  3221. <member name="M:CommonLang.Geometry.Vector3.Negate(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3222. <summary>
  3223. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains the specified vector inversion.
  3224. </summary>
  3225. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3226. <param name="result">The result of the vector inversion as an output parameter.</param>
  3227. </member>
  3228. <member name="M:CommonLang.Geometry.Vector3.Normalize">
  3229. <summary>
  3230. Turns this <see cref="T:CommonLang.Geometry.Vector3"/> to a unit vector with the same direction.
  3231. </summary>
  3232. </member>
  3233. <member name="M:CommonLang.Geometry.Vector3.Normalize(CommonLang.Geometry.Vector3)">
  3234. <summary>
  3235. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a normalized values from another vector.
  3236. </summary>
  3237. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3238. <returns>Unit vector.</returns>
  3239. </member>
  3240. <member name="M:CommonLang.Geometry.Vector3.Normalize(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3241. <summary>
  3242. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a normalized values from another vector.
  3243. </summary>
  3244. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3245. <param name="result">Unit vector as an output parameter.</param>
  3246. </member>
  3247. <member name="M:CommonLang.Geometry.Vector3.Reflect(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3248. <summary>
  3249. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains reflect vector of the given vector and normal.
  3250. </summary>
  3251. <param name="vector">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3252. <param name="normal">Reflection normal.</param>
  3253. <returns>Reflected vector.</returns>
  3254. </member>
  3255. <member name="M:CommonLang.Geometry.Vector3.Reflect(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3256. <summary>
  3257. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains reflect vector of the given vector and normal.
  3258. </summary>
  3259. <param name="vector">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3260. <param name="normal">Reflection normal.</param>
  3261. <param name="result">Reflected vector as an output parameter.</param>
  3262. </member>
  3263. <member name="M:CommonLang.Geometry.Vector3.SmoothStep(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3,System.Single)">
  3264. <summary>
  3265. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains cubic interpolation of the specified vectors.
  3266. </summary>
  3267. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3268. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3269. <param name="amount">Weighting value.</param>
  3270. <returns>Cubic interpolation of the specified vectors.</returns>
  3271. </member>
  3272. <member name="M:CommonLang.Geometry.Vector3.SmoothStep(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,System.Single,CommonLang.Geometry.Vector3@)">
  3273. <summary>
  3274. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains cubic interpolation of the specified vectors.
  3275. </summary>
  3276. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3277. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3278. <param name="amount">Weighting value.</param>
  3279. <param name="result">Cubic interpolation of the specified vectors as an output parameter.</param>
  3280. </member>
  3281. <member name="M:CommonLang.Geometry.Vector3.Subtract(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3282. <summary>
  3283. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains subtraction of on <see cref="T:CommonLang.Geometry.Vector3"/> from a another.
  3284. </summary>
  3285. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3286. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3287. <returns>The result of the vector subtraction.</returns>
  3288. </member>
  3289. <member name="M:CommonLang.Geometry.Vector3.Subtract(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@,CommonLang.Geometry.Vector3@)">
  3290. <summary>
  3291. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains subtraction of on <see cref="T:CommonLang.Geometry.Vector3"/> from a another.
  3292. </summary>
  3293. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3294. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3295. <param name="result">The result of the vector subtraction as an output parameter.</param>
  3296. </member>
  3297. <member name="M:CommonLang.Geometry.Vector3.ToString">
  3298. <summary>
  3299. Returns a <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Vector3"/> in the format:
  3300. {X:[<see cref="F:CommonLang.Geometry.Vector3.X"/>] Y:[<see cref="F:CommonLang.Geometry.Vector3.Y"/>] Z:[<see cref="F:CommonLang.Geometry.Vector3.Z"/>]}
  3301. </summary>
  3302. <returns>A <see cref="T:System.String"/> representation of this <see cref="T:CommonLang.Geometry.Vector3"/>.</returns>
  3303. </member>
  3304. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3,CommonLang.Geometry.Matrix)">
  3305. <summary>
  3306. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a transformation of vector(position.X,position.Y,position.Z,1) by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  3307. </summary>
  3308. <param name="position">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3309. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3310. <returns>Transformed <see cref="T:CommonLang.Geometry.Vector3"/>.</returns>
  3311. </member>
  3312. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector3@)">
  3313. <summary>
  3314. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a transformation of vector(position.X,position.Y,position.Z,1) by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  3315. </summary>
  3316. <param name="position">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3317. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3318. <param name="result">Transformed <see cref="T:CommonLang.Geometry.Vector3"/> as an output parameter.</param>
  3319. </member>
  3320. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3,CommonLang.Geometry.Quaternion)">
  3321. <summary>
  3322. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a transformation of vector(position.X,position.Y,position.Z,0) by the specified <see cref="T:CommonLang.Geometry.Quaternion"/>, representing the rotation.
  3323. </summary>
  3324. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3325. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  3326. <returns>Transformed <see cref="T:CommonLang.Geometry.Vector3"/>.</returns>
  3327. </member>
  3328. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Vector3@)">
  3329. <summary>
  3330. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a transformation of vector(position.X,position.Y,position.Z,0) by the specified <see cref="T:CommonLang.Geometry.Quaternion"/>, representing the rotation.
  3331. </summary>
  3332. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/>.</param>
  3333. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  3334. <param name="result">Transformed <see cref="T:CommonLang.Geometry.Vector3"/> as an output parameter.</param>
  3335. </member>
  3336. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3[],System.Int32,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector3[],System.Int32,System.Int32)">
  3337. <summary>
  3338. Apply transformation on vectors within array of <see cref="T:CommonLang.Geometry.Vector3"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  3339. </summary>
  3340. <param name="sourceArray">Source array.</param>
  3341. <param name="sourceIndex">The starting index of transformation in the source array.</param>
  3342. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3343. <param name="destinationArray">Destination array.</param>
  3344. <param name="destinationIndex">The starting index in the destination array, where the first <see cref="T:CommonLang.Geometry.Vector3"/> should be written.</param>
  3345. <param name="length">The number of vectors to be transformed.</param>
  3346. </member>
  3347. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3[],System.Int32,CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Vector3[],System.Int32,System.Int32)">
  3348. <summary>
  3349. Apply transformation on vectors within array of <see cref="T:CommonLang.Geometry.Vector3"/> by the specified <see cref="T:CommonLang.Geometry.Quaternion"/> and places the results in an another array.
  3350. </summary>
  3351. <param name="sourceArray">Source array.</param>
  3352. <param name="sourceIndex">The starting index of transformation in the source array.</param>
  3353. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  3354. <param name="destinationArray">Destination array.</param>
  3355. <param name="destinationIndex">The starting index in the destination array, where the first <see cref="T:CommonLang.Geometry.Vector3"/> should be written.</param>
  3356. <param name="length">The number of vectors to be transformed.</param>
  3357. </member>
  3358. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3[],CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector3[])">
  3359. <summary>
  3360. Apply transformation on all vectors within array of <see cref="T:CommonLang.Geometry.Vector3"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  3361. </summary>
  3362. <param name="sourceArray">Source array.</param>
  3363. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3364. <param name="destinationArray">Destination array.</param>
  3365. </member>
  3366. <member name="M:CommonLang.Geometry.Vector3.Transform(CommonLang.Geometry.Vector3[],CommonLang.Geometry.Quaternion@,CommonLang.Geometry.Vector3[])">
  3367. <summary>
  3368. Apply transformation on all vectors within array of <see cref="T:CommonLang.Geometry.Vector3"/> by the specified <see cref="T:CommonLang.Geometry.Quaternion"/> and places the results in an another array.
  3369. </summary>
  3370. <param name="sourceArray">Source array.</param>
  3371. <param name="rotation">The <see cref="T:CommonLang.Geometry.Quaternion"/> which contains rotation transformation.</param>
  3372. <param name="destinationArray">Destination array.</param>
  3373. </member>
  3374. <member name="M:CommonLang.Geometry.Vector3.TransformNormal(CommonLang.Geometry.Vector3,CommonLang.Geometry.Matrix)">
  3375. <summary>
  3376. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a transformation of the specified normal by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  3377. </summary>
  3378. <param name="normal">Source <see cref="T:CommonLang.Geometry.Vector3"/> which represents a normal vector.</param>
  3379. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3380. <returns>Transformed normal.</returns>
  3381. </member>
  3382. <member name="M:CommonLang.Geometry.Vector3.TransformNormal(CommonLang.Geometry.Vector3@,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector3@)">
  3383. <summary>
  3384. Creates a new <see cref="T:CommonLang.Geometry.Vector3"/> that contains a transformation of the specified normal by the specified <see cref="T:CommonLang.Geometry.Matrix"/>.
  3385. </summary>
  3386. <param name="normal">Source <see cref="T:CommonLang.Geometry.Vector3"/> which represents a normal vector.</param>
  3387. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3388. <param name="result">Transformed normal as an output parameter.</param>
  3389. </member>
  3390. <member name="M:CommonLang.Geometry.Vector3.TransformNormal(CommonLang.Geometry.Vector3[],System.Int32,CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector3[],System.Int32,System.Int32)">
  3391. <summary>
  3392. Apply transformation on normals within array of <see cref="T:CommonLang.Geometry.Vector3"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  3393. </summary>
  3394. <param name="sourceArray">Source array.</param>
  3395. <param name="sourceIndex">The starting index of transformation in the source array.</param>
  3396. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3397. <param name="destinationArray">Destination array.</param>
  3398. <param name="destinationIndex">The starting index in the destination array, where the first <see cref="T:CommonLang.Geometry.Vector3"/> should be written.</param>
  3399. <param name="length">The number of normals to be transformed.</param>
  3400. </member>
  3401. <member name="M:CommonLang.Geometry.Vector3.TransformNormal(CommonLang.Geometry.Vector3[],CommonLang.Geometry.Matrix@,CommonLang.Geometry.Vector3[])">
  3402. <summary>
  3403. Apply transformation on all normals within array of <see cref="T:CommonLang.Geometry.Vector3"/> by the specified <see cref="T:CommonLang.Geometry.Matrix"/> and places the results in an another array.
  3404. </summary>
  3405. <param name="sourceArray">Source array.</param>
  3406. <param name="matrix">The transformation <see cref="T:CommonLang.Geometry.Matrix"/>.</param>
  3407. <param name="destinationArray">Destination array.</param>
  3408. </member>
  3409. <member name="M:CommonLang.Geometry.Vector3.op_Equality(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3410. <summary>
  3411. Compares whether two <see cref="T:CommonLang.Geometry.Vector3"/> instances are equal.
  3412. </summary>
  3413. <param name="value1"><see cref="T:CommonLang.Geometry.Vector3"/> instance on the left of the equal sign.</param>
  3414. <param name="value2"><see cref="T:CommonLang.Geometry.Vector3"/> instance on the right of the equal sign.</param>
  3415. <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  3416. </member>
  3417. <member name="M:CommonLang.Geometry.Vector3.op_Inequality(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3418. <summary>
  3419. Compares whether two <see cref="T:CommonLang.Geometry.Vector3"/> instances are not equal.
  3420. </summary>
  3421. <param name="value1"><see cref="T:CommonLang.Geometry.Vector3"/> instance on the left of the not equal sign.</param>
  3422. <param name="value2"><see cref="T:CommonLang.Geometry.Vector3"/> instance on the right of the not equal sign.</param>
  3423. <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  3424. </member>
  3425. <member name="M:CommonLang.Geometry.Vector3.op_Addition(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3426. <summary>
  3427. Adds two vectors.
  3428. </summary>
  3429. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the left of the add sign.</param>
  3430. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the right of the add sign.</param>
  3431. <returns>Sum of the vectors.</returns>
  3432. </member>
  3433. <member name="M:CommonLang.Geometry.Vector3.op_UnaryNegation(CommonLang.Geometry.Vector3)">
  3434. <summary>
  3435. Inverts values in the specified <see cref="T:CommonLang.Geometry.Vector3"/>.
  3436. </summary>
  3437. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the right of the sub sign.</param>
  3438. <returns>Result of the inversion.</returns>
  3439. </member>
  3440. <member name="M:CommonLang.Geometry.Vector3.op_Subtraction(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3441. <summary>
  3442. Subtracts a <see cref="T:CommonLang.Geometry.Vector3"/> from a <see cref="T:CommonLang.Geometry.Vector3"/>.
  3443. </summary>
  3444. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the left of the sub sign.</param>
  3445. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the right of the sub sign.</param>
  3446. <returns>Result of the vector subtraction.</returns>
  3447. </member>
  3448. <member name="M:CommonLang.Geometry.Vector3.op_Multiply(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3449. <summary>
  3450. Multiplies the components of two vectors by each other.
  3451. </summary>
  3452. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the left of the mul sign.</param>
  3453. <param name="value2">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the right of the mul sign.</param>
  3454. <returns>Result of the vector multiplication.</returns>
  3455. </member>
  3456. <member name="M:CommonLang.Geometry.Vector3.op_Multiply(CommonLang.Geometry.Vector3,System.Single)">
  3457. <summary>
  3458. Multiplies the components of vector by a scalar.
  3459. </summary>
  3460. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the left of the mul sign.</param>
  3461. <param name="scaleFactor">Scalar value on the right of the mul sign.</param>
  3462. <returns>Result of the vector multiplication with a scalar.</returns>
  3463. </member>
  3464. <member name="M:CommonLang.Geometry.Vector3.op_Multiply(System.Single,CommonLang.Geometry.Vector3)">
  3465. <summary>
  3466. Multiplies the components of vector by a scalar.
  3467. </summary>
  3468. <param name="scaleFactor">Scalar value on the left of the mul sign.</param>
  3469. <param name="value">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the right of the mul sign.</param>
  3470. <returns>Result of the vector multiplication with a scalar.</returns>
  3471. </member>
  3472. <member name="M:CommonLang.Geometry.Vector3.op_Division(CommonLang.Geometry.Vector3,CommonLang.Geometry.Vector3)">
  3473. <summary>
  3474. Divides the components of a <see cref="T:CommonLang.Geometry.Vector3"/> by the components of another <see cref="T:CommonLang.Geometry.Vector3"/>.
  3475. </summary>
  3476. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the left of the div sign.</param>
  3477. <param name="value2">Divisor <see cref="T:CommonLang.Geometry.Vector3"/> on the right of the div sign.</param>
  3478. <returns>The result of dividing the vectors.</returns>
  3479. </member>
  3480. <member name="M:CommonLang.Geometry.Vector3.op_Division(CommonLang.Geometry.Vector3,System.Single)">
  3481. <summary>
  3482. Divides the components of a <see cref="T:CommonLang.Geometry.Vector3"/> by a scalar.
  3483. </summary>
  3484. <param name="value1">Source <see cref="T:CommonLang.Geometry.Vector3"/> on the left of the div sign.</param>
  3485. <param name="divider">Divisor scalar on the right of the div sign.</param>
  3486. <returns>The result of dividing a vector by a scalar.</returns>
  3487. </member>
  3488. <member name="P:CommonLang.Geometry.Vector4.Zero">
  3489. <summary>
  3490. Returns a <see>Vector4</see> with components 0, 0, 0, 0.
  3491. </summary>
  3492. </member>
  3493. <member name="P:CommonLang.Geometry.Vector4.One">
  3494. <summary>
  3495. Returns a <see>Vector4</see> with components 1, 1, 1, 1.
  3496. </summary>
  3497. </member>
  3498. <member name="P:CommonLang.Geometry.Vector4.UnitX">
  3499. <summary>
  3500. Returns a <see>Vector4</see> with components 1, 0, 0, 0.
  3501. </summary>
  3502. </member>
  3503. <member name="P:CommonLang.Geometry.Vector4.UnitY">
  3504. <summary>
  3505. Returns a <see>Vector4</see> with components 0, 1, 0, 0.
  3506. </summary>
  3507. </member>
  3508. <member name="P:CommonLang.Geometry.Vector4.UnitZ">
  3509. <summary>
  3510. Returns a <see>Vector4</see> with components 0, 0, 1, 0.
  3511. </summary>
  3512. </member>
  3513. <member name="P:CommonLang.Geometry.Vector4.UnitW">
  3514. <summary>
  3515. Returns a <see>Vector4</see> with components 0, 0, 0, 1.
  3516. </summary>
  3517. </member>
  3518. <member name="M:CommonLang.Geometry.Vector4.Add(CommonLang.Geometry.Vector4,CommonLang.Geometry.Vector4)">
  3519. <summary>
  3520. Performs vector addition on <paramref name="value1"/> and <paramref name="value2"/>.
  3521. </summary>
  3522. <param name="value1">The first vector to add.</param>
  3523. <param name="value2">The second vector to add.</param>
  3524. <returns>The result of the vector addition.</returns>
  3525. </member>
  3526. <member name="M:CommonLang.Geometry.Vector4.Add(CommonLang.Geometry.Vector4@,CommonLang.Geometry.Vector4@,CommonLang.Geometry.Vector4@)">
  3527. <summary>
  3528. Performs vector addition on <paramref name="value1"/> and
  3529. <paramref name="value2"/>, storing the result of the
  3530. addition in <paramref name="result"/>.
  3531. </summary>
  3532. <param name="value1">The first vector to add.</param>
  3533. <param name="value2">The second vector to add.</param>
  3534. <param name="result">The result of the vector addition.</param>
  3535. </member>
  3536. <member name="M:CommonLang.Geometry.Vector4.Subtract(CommonLang.Geometry.Vector4,CommonLang.Geometry.Vector4)">
  3537. <summary>
  3538. Performs vector subtraction on <paramref name="value1"/> and <paramref name="value2"/>.
  3539. </summary>
  3540. <param name="value1">The vector to be subtracted from.</param>
  3541. <param name="value2">The vector to be subtracted from <paramref name="value1"/>.</param>
  3542. <returns>The result of the vector subtraction.</returns>
  3543. </member>
  3544. <member name="M:CommonLang.Geometry.Vector4.Subtract(CommonLang.Geometry.Vector4@,CommonLang.Geometry.Vector4@,CommonLang.Geometry.Vector4@)">
  3545. <summary>
  3546. Performs vector subtraction on <paramref name="value1"/> and <paramref name="value2"/>.
  3547. </summary>
  3548. <param name="value1">The vector to be subtracted from.</param>
  3549. <param name="value2">The vector to be subtracted from <paramref name="value1"/>.</param>
  3550. <param name="result">The result of the vector subtraction.</param>
  3551. </member>
  3552. <member name="P:CommonLang.TimeInterval`1.IntervalTimeMS">
  3553. <summary>
  3554. 间隔时间
  3555. </summary>
  3556. </member>
  3557. <member name="P:CommonLang.TimeInterval`1.TotalTickCount">
  3558. <summary>
  3559. 触发过多少次
  3560. </summary>
  3561. </member>
  3562. <member name="P:CommonLang.TimeInterval`1.TotalPassTimeMS">
  3563. <summary>
  3564. 总共经过时间
  3565. </summary>
  3566. </member>
  3567. <member name="M:CommonLang.TimeInterval`1.Reset">
  3568. <summary>
  3569. 记录归零
  3570. </summary>
  3571. </member>
  3572. <member name="M:CommonLang.TimeInterval`1.Update(System.Int32)">
  3573. <summary>
  3574. 更新
  3575. </summary>
  3576. <param name="intervalMS">间隔时间</param>
  3577. <returns>是否应该触发</returns>
  3578. </member>
  3579. <member name="M:CommonLang.TimeExpire`1.Reset">
  3580. <summary>
  3581. 记录归零
  3582. </summary>
  3583. </member>
  3584. <member name="M:CommonLang.TimeExpire`1.Update(System.Int32)">
  3585. <summary>
  3586. 更新
  3587. </summary>
  3588. <param name="intervalMS">间隔时间</param>
  3589. <returns>是否到期</returns>
  3590. </member>
  3591. <member name="P:CommonLang.TimeExpire`1.IsEnd">
  3592. <summary>
  3593. 是否结束
  3594. </summary>
  3595. </member>
  3596. <member name="P:CommonLang.TimeExpire`1.Percent">
  3597. <summary>
  3598. 剩余百分比
  3599. </summary>
  3600. </member>
  3601. <member name="M:CommonLang.TimeTaskMS.Update(System.Int32)">
  3602. <summary>
  3603. 更新
  3604. </summary>
  3605. <param name="intervalMS">间隔时间</param>
  3606. </member>
  3607. <member name="M:CommonLang.TimeTaskQueue.AddTimeTask(System.Int32,System.Int32,System.Int32,CommonLang.TickHandler)">
  3608. <summary>
  3609. 增加时间任务
  3610. </summary>
  3611. <param name="intervalMS"></param>
  3612. <param name="delayMS"></param>
  3613. <param name="repeat"></param>
  3614. <param name="handler"></param>
  3615. </member>
  3616. <member name="M:CommonLang.TimeTaskQueue.AddTimeDelayMS(System.Int32,CommonLang.TickHandler)">
  3617. <summary>
  3618. 增加延时回调方法
  3619. </summary>
  3620. <param name="delayMS"></param>
  3621. <param name="handler"></param>
  3622. </member>
  3623. <member name="M:CommonLang.TimeTaskQueue.AddTimePeriodicMS(System.Int32,CommonLang.TickHandler)">
  3624. <summary>
  3625. 增加定时回调方法
  3626. </summary>
  3627. <param name="intervalMS"></param>
  3628. <param name="handler"></param>
  3629. </member>
  3630. <member name="T:CommonLang.MultiTimeLine">
  3631. <summary>
  3632. 同时执行多个Timer
  3633. </summary>
  3634. </member>
  3635. <member name="P:CommonLang.Vector.IRoundObject.RadiusSize">
  3636. <summary>
  3637. 半径
  3638. </summary>
  3639. </member>
  3640. <member name="P:CommonLang.Vector.IPositionObject.Direction">
  3641. <summary>
  3642. 方向
  3643. </summary>
  3644. </member>
  3645. <member name="P:CommonLang.Vector.IPositionObject.RadiusSize">
  3646. <summary>
  3647. 半径
  3648. </summary>
  3649. </member>
  3650. <member name="T:CommonLang.Vector.Vector2">
  3651. <summary>
  3652. 2D向量
  3653. </summary>
  3654. </member>
  3655. <member name="T:CommonLang.Vector.TVector2">
  3656. <summary>
  3657. 2D向量
  3658. </summary>
  3659. </member>
  3660. <member name="T:CommonLang.Vector.Polar2">
  3661. <summary>
  3662. 2D极坐标向量
  3663. </summary>
  3664. </member>
  3665. <member name="M:CommonLang.Vector.MathVector.move(CommonLang.Vector.IVector2,System.Single,System.Single)">
  3666. 移动指定偏移
  3667. @param v
  3668. @param dx x距离
  3669. @param dy y距离
  3670. </member>
  3671. <member name="M:CommonLang.Vector.MathVector.movePolar(CommonLang.Vector.IVector2,System.Single,System.Single)">
  3672. 通过极坐标来移动
  3673. @param v
  3674. @param degree 弧度
  3675. @param distance 距离
  3676. </member>
  3677. <member name="M:CommonLang.Vector.MathVector.movePolar(CommonLang.Vector.IVector2,System.Single,System.Single,System.Single)">
  3678. 通过极坐标来移动
  3679. @param v
  3680. @param degree 弧度
  3681. @param speed 速度 (单位距离/秒)
  3682. @param interval_ms 毫秒时间
  3683. </member>
  3684. <member name="M:CommonLang.Vector.MathVector.moveTo(CommonLang.Vector.IVector2,System.Single,System.Single,System.Single)">
  3685. 向目标移动
  3686. @param v
  3687. @param x 目标x
  3688. @param y 目标y
  3689. @return 是否到达目的地
  3690. </member>
  3691. <member name="M:CommonLang.Vector.MathVector.getDistanceSpeedTime(System.Single,System.Single)">
  3692. 得到速度和时间产生的距离
  3693. @param speed 速度 (单位距离/秒)
  3694. @param interval_ms 毫秒时间
  3695. @return
  3696. </member>
  3697. <member name="M:CommonLang.Vector.MathVector.getDegree(System.Single,System.Single)">
  3698. <summary>
  3699. 得到弧度
  3700. </summary>
  3701. <param name="dx">x向量</param>
  3702. <param name="dy">y向量</param>
  3703. <returns></returns>
  3704. </member>
  3705. <member name="M:CommonLang.Vector.MathVector.getDegree(System.Single,System.Single,System.Single,System.Single)">
  3706. <summary>
  3707. </summary>
  3708. <param name="x1"></param>
  3709. <param name="y1"></param>
  3710. <param name="x2"></param>
  3711. <param name="y2"></param>
  3712. <returns></returns>
  3713. </member>
  3714. <member name="M:CommonLang.Vector.MathVector.getDegree(CommonLang.Vector.IVector2)">
  3715. 得到弧度
  3716. @param v 向量
  3717. @return
  3718. </member>
  3719. <member name="M:CommonLang.Vector.MathVector.vectorAdd(CommonLang.Vector.IVector2,CommonLang.Vector.IVector2)">
  3720. 将2个向量相加得到一个新的向量
  3721. @param a
  3722. @param b
  3723. @return
  3724. </member>
  3725. <member name="M:CommonLang.Vector.MathVector.vectorSub(CommonLang.Vector.IVector2,CommonLang.Vector.IVector2)">
  3726. 将2个向量相减得到一个新的向量
  3727. @param a
  3728. @param b
  3729. @return
  3730. </member>
  3731. <member name="M:CommonLang.Vector.MathVector.vectorAdd(CommonLang.Vector.IVector2,System.Single,System.Single)">
  3732. 将一个向量加上新的向量,得到一个新的向量
  3733. @param a
  3734. @param degree
  3735. @param distance
  3736. @return
  3737. </member>
  3738. <member name="M:CommonLang.Vector.MathVector.vectorAdd(CommonLang.Vector.IVector2,System.Single)">
  3739. 把一个向量向自己本身的方向相加,得到一个新的向量
  3740. @param a
  3741. @param distance
  3742. @return
  3743. </member>
  3744. <member name="M:CommonLang.Vector.MathVector.vectorScale(CommonLang.Vector.IVector2,System.Single)">
  3745. 将一个向量缩放一定比率后,得到一个新的向量
  3746. @param a
  3747. @param scale
  3748. @return
  3749. </member>
  3750. <member name="M:CommonLang.Vector.MathVector.moveImpact(System.Collections.Generic.ICollection{CommonLang.Vector.IRoundObject},CommonLang.Vector.IRoundObject,System.Single,System.Single,System.Int32,System.Int32)">
  3751. <summary>
  3752. 挤压移动单位,某个单位在集合中移动,碰撞并挤开其他单位
  3753. </summary>
  3754. <param name="vectors"></param>
  3755. <param name="obj"></param>
  3756. <param name="angle"></param>
  3757. <param name="distance"></param>
  3758. <param name="depth"></param>
  3759. <param name="max_depth"></param>
  3760. </member>
  3761. <member name="M:CommonLang.Vector.VectorGroupHelper.DistributeSpacingSizeRandom``1(CommonLang.Vector.IVector2,System.Collections.Generic.ICollection{``0},System.Single,System.Random)">
  3762. <summary>
  3763. 随机调整每个点,
  3764. 使得距离都最小保持在spacing_size
  3765. </summary>
  3766. </member>
  3767. <member name="M:CommonLang.Vector.VectorGroupHelper.DistributeSpacingSizeSquare``1(CommonLang.Vector.IVector2,System.Collections.Generic.ICollection{``0},System.Single)">
  3768. <summary>
  3769. 按正方形调整每个点,
  3770. 使得距离都最小保持在spacing_size
  3771. </summary>
  3772. </member>
  3773. <member name="M:CommonLang.Vector.VectorGroupHelper.DistributeSpacingSizeRound``1(CommonLang.Vector.IVector2,System.Collections.Generic.ICollection{``0},System.Single)">
  3774. <summary>
  3775. 按圆形调整每个点,
  3776. 使得距离都最小保持在spacing_size
  3777. </summary>
  3778. </member>
  3779. <member name="M:CommonLang.Vector.VectorGroupHelper.DistributeSpacingSizeCycle``1(CommonLang.Vector.IVector2,System.Collections.Generic.ICollection{``0},System.Single)">
  3780. <summary>
  3781. 按环形调整每个点,
  3782. 使得距离都最小保持在spacing_size
  3783. </summary>
  3784. </member>
  3785. <member name="M:CommonLang.Vector.VectorGroupHelper.DistributeSpacingSizeBeehive``1(CommonLang.Vector.IVector2,System.Collections.Generic.ICollection{``0},System.Single)">
  3786. <summary>
  3787. 按蜂窝状调整每个点,
  3788. 使得距离都最小保持在spacing_size
  3789. </summary>
  3790. </member>
  3791. <member name="M:CommonLang.IO.IOUtil.ReadTo(System.IO.Stream,System.IO.Stream,System.Int64,System.Predicate{System.Int32},System.Int32)">
  3792. <summary>
  3793. 从输入流复制到输出流
  3794. </summary>
  3795. <param name="input">输入流</param>
  3796. <param name="output">输出流</param>
  3797. <param name="total_bytes">总共复制多少字节</param>
  3798. <param name="progress">进度回调,返回False表示终止进程</param>
  3799. <param name="buffer_size">缓冲区大小</param>
  3800. <returns></returns>
  3801. </member>
  3802. <member name="M:CommonLang.IO.IOutputStream.PutVU32(System.UInt32)">
  3803. <summary>
  3804. 写入可变长度32位
  3805. </summary>
  3806. </member>
  3807. <member name="M:CommonLang.IO.IOutputStream.PutVS32(System.Int32)">
  3808. <summary>
  3809. 写入可变长度32位
  3810. </summary>
  3811. </member>
  3812. <member name="M:CommonLang.IO.IOutputStream.PutVS64(System.Int64)">
  3813. <summary>
  3814. 写入可变长度64位
  3815. </summary>
  3816. </member>
  3817. <member name="M:CommonLang.IO.IOutputStream.PutVU64(System.UInt64)">
  3818. <summary>
  3819. 写入可变长度64位
  3820. </summary>
  3821. </member>
  3822. <member name="M:CommonLang.IO.IOutputStream.PutData(System.Object)">
  3823. <summary>
  3824. 自动检测类型
  3825. </summary>
  3826. <param name="value"></param>
  3827. </member>
  3828. <member name="M:CommonLang.IO.IOutputStream.PutStructArray``1(``0[])">
  3829. <summary>
  3830. 不包括消息头,列表中元素必须保证类型一致
  3831. </summary>
  3832. </member>
  3833. <member name="M:CommonLang.IO.IOutputStream.PutStructList``1(System.Collections.Generic.IList{``0})">
  3834. <summary>
  3835. 不包括消息头,列表中元素必须保证类型一致
  3836. </summary>
  3837. </member>
  3838. <member name="M:CommonLang.IO.IOutputStream.PutExtArray``1(``0[])">
  3839. <summary>
  3840. 不包括消息头,列表中元素必须保证类型一致
  3841. </summary>
  3842. </member>
  3843. <member name="M:CommonLang.IO.IOutputStream.PutExtList``1(System.Collections.Generic.IList{``0})">
  3844. <summary>
  3845. 不包括消息头,列表中元素必须保证类型一致
  3846. </summary>
  3847. </member>
  3848. <member name="M:CommonLang.IO.IInputStream.GetVU32">
  3849. <summary>
  3850. 写入可变长度32位
  3851. </summary>
  3852. </member>
  3853. <member name="M:CommonLang.IO.IInputStream.GetVS32">
  3854. <summary>
  3855. 写入可变长度32位
  3856. </summary>
  3857. </member>
  3858. <member name="M:CommonLang.IO.IInputStream.GetVS64">
  3859. <summary>
  3860. 写入可变长度64位
  3861. </summary>
  3862. </member>
  3863. <member name="M:CommonLang.IO.IInputStream.GetVU64">
  3864. <summary>
  3865. 写入可变长度64位
  3866. </summary>
  3867. </member>
  3868. <member name="M:CommonLang.IO.IInputStream.GetData(CommonLang.IO.DataType@)">
  3869. <summary>
  3870. 自动检测类型
  3871. </summary>
  3872. <param name="type"></param>
  3873. </member>
  3874. <member name="M:CommonLang.IO.IInputStream.GetStructArray``1">
  3875. <summary>
  3876. 不包括消息头,列表中元素必须保证类型一致
  3877. </summary>
  3878. </member>
  3879. <member name="M:CommonLang.IO.IInputStream.GetExtArray``1">
  3880. <summary>
  3881. 不包括消息头,列表中元素必须保证类型一致
  3882. </summary>
  3883. </member>
  3884. <member name="M:CommonLang.IO.IInputStream.GetStructList``1">
  3885. <summary>
  3886. 不包括消息头,列表中元素必须保证类型一致
  3887. </summary>
  3888. </member>
  3889. <member name="M:CommonLang.IO.IInputStream.GetExtList``1">
  3890. <summary>
  3891. 不包括消息头,列表中元素必须保证类型一致
  3892. </summary>
  3893. </member>
  3894. <member name="M:CommonLang.IO.IInputStream.GetGenericStructList``2">
  3895. <summary>
  3896. 不包括消息头,列表中元素必须保证类型一致
  3897. </summary>
  3898. </member>
  3899. <member name="M:CommonLang.IO.IInputStream.GetGenericExtList``2">
  3900. <summary>
  3901. 不包括消息头,列表中元素必须保证类型一致
  3902. </summary>
  3903. </member>
  3904. <member name="M:CommonLang.IO.Resource.ExistData(System.String)">
  3905. <summary>
  3906. 判断资源是否存在
  3907. </summary>
  3908. <param name="path"></param>
  3909. <returns></returns>
  3910. </member>
  3911. <member name="M:CommonLang.IO.Resource.LoadData(System.String)">
  3912. <summary>
  3913. 读取资源
  3914. </summary>
  3915. <param name="path">子目录对应的资源路径</param>
  3916. <returns></returns>
  3917. </member>
  3918. <member name="M:CommonLang.IO.Resource.ListFiles(System.String)">
  3919. <summary>
  3920. 列出所有子文件,不包换目录
  3921. </summary>
  3922. <param name="path"></param>
  3923. <returns></returns>
  3924. </member>
  3925. <member name="M:CommonLang.IO.Resource.LoadDataAsStream(System.String)">
  3926. <summary>
  3927. 读取资源
  3928. </summary>
  3929. <param name="path">子目录对应的资源路径</param>
  3930. <returns></returns>
  3931. </member>
  3932. <member name="M:CommonLang.IO.Resource.LoadAllText(System.String)">
  3933. <summary>
  3934. 读取文本资源
  3935. </summary>
  3936. <param name="path"></param>
  3937. <returns></returns>
  3938. </member>
  3939. <member name="M:CommonLang.IO.IResourceLoader.ExistData(System.String)">
  3940. <summary>
  3941. 判断一个文件是否存在
  3942. </summary>
  3943. <param name="path"></param>
  3944. <returns></returns>
  3945. </member>
  3946. <member name="M:CommonLang.IO.IResourceLoader.LoadData(System.String)">
  3947. <summary>
  3948. 读取二进制数据
  3949. </summary>
  3950. <param name="path"></param>
  3951. <returns></returns>
  3952. </member>
  3953. <member name="M:CommonLang.IO.IResourceLoader.LoadDataAsStream(System.String)">
  3954. <summary>
  3955. 尝试以流的方式读取,返回空表示不支持流
  3956. </summary>
  3957. <param name="path"></param>
  3958. <returns></returns>
  3959. </member>
  3960. <member name="M:CommonLang.IO.IResourceLoader.ListFiles(System.String)">
  3961. <summary>
  3962. 列出所有子文件,不包换目录
  3963. </summary>
  3964. <param name="path"></param>
  3965. <returns></returns>
  3966. </member>
  3967. <member name="M:CommonLang.Net.AbstractSession.GetAttribute(System.String)">
  3968. <summary>
  3969. 获取属性
  3970. </summary>
  3971. <param name="key"></param>
  3972. <returns></returns>
  3973. </member>
  3974. <member name="M:CommonLang.Net.AbstractSession.SetAttribute(System.String,System.Object)">
  3975. <summary>
  3976. 设置属性
  3977. </summary>
  3978. <param name="key"></param>
  3979. <param name="value"></param>
  3980. <returns></returns>
  3981. </member>
  3982. <member name="M:CommonLang.Net.AbstractSession.RemoveAttribute(System.String)">
  3983. <summary>
  3984. 移除属性
  3985. </summary>
  3986. <param name="key"></param>
  3987. <returns></returns>
  3988. </member>
  3989. <member name="M:CommonLang.Net.AbstractSession.ContainsAttribute(System.String)">
  3990. <summary>
  3991. 是否包含属性
  3992. </summary>
  3993. <param name="key"></param>
  3994. <returns></returns>
  3995. </member>
  3996. <member name="M:CommonLang.Net.AbstractSession.GetAttributeKeys">
  3997. <summary>
  3998. 遍历属性列表
  3999. </summary>
  4000. <returns></returns>
  4001. </member>
  4002. <member name="M:CommonLang.Net.IPUtil.CreateLocalConnectorEndPoint">
  4003. <summary>
  4004. 用System.net.dns类中的GetHostEntry()和GetHostName()方法来建立一个本
  4005. 地IP地址,并且建立了一个IPHostEntry对象。用以下两句代码来获取本地IP
  4006. 地址
  4007. </summary>
  4008. <returns></returns>
  4009. </member>
  4010. <member name="M:CommonLang.Net.INetPackageCodec.doDecode(System.IO.Stream,System.Object@)">
  4011. <summary>
  4012. 将网络流中的数据解析成对象
  4013. </summary>
  4014. <param name="input"></param>
  4015. <param name="message"></param>
  4016. <returns>返回true则表示此次对象解析完成,进行下一次解析</returns>
  4017. </member>
  4018. <member name="M:CommonLang.Net.INetPackageCodec.doEncode(System.IO.Stream,System.Object)">
  4019. <summary>
  4020. 将对象编码传输至网络流
  4021. </summary>
  4022. <param name="output"></param>
  4023. <param name="message"></param>
  4024. <returns></returns>
  4025. </member>
  4026. <member name="M:CommonLang.Protocol.MessageFactoryGenerator.RegistAssembly(System.Reflection.Assembly[])">
  4027. <summary>
  4028. 将一个程序集内的所有类符合[MessageType]的类全部注册到编解码器
  4029. </summary>
  4030. <param name="assembly"></param>
  4031. </member>
  4032. <member name="T:CommonLang.Property.DescAttribute">
  4033. <summary>
  4034. 编辑器支持,描述性文件
  4035. </summary>
  4036. </member>
  4037. <member name="T:CommonLang.Property.DependOnPropertyAttribute">
  4038. <summary>
  4039. 某个字段依赖于某个开关(字段或者属性)
  4040. </summary>
  4041. </member>
  4042. <member name="T:CommonLang.Property.ListAttribute">
  4043. <summary>
  4044. 编辑器支持,描述列表的成员类型
  4045. </summary>
  4046. </member>
  4047. <member name="T:CommonLang.Property.TableClassAttribute">
  4048. <summary>
  4049. 编辑器支持,描述一个类的主键是什么
  4050. </summary>
  4051. </member>
  4052. <member name="T:CommonLang.Property.ExpandableAttribute">
  4053. <summary>
  4054. 编辑器支持,此类型是可折叠
  4055. </summary>
  4056. </member>
  4057. <member name="T:CommonLang.Property.NotNullAttribute">
  4058. <summary>
  4059. 编辑器支持,字段是否可删除或改变
  4060. </summary>
  4061. </member>
  4062. <member name="T:CommonLang.Property.OptionalValueAttribute">
  4063. <summary>
  4064. 列取当前字段可能的值
  4065. </summary>
  4066. </member>
  4067. <member name="T:CommonLang.Property.Int32ColorAttribute">
  4068. <summary>
  4069. 标识 Field 字段为颜色
  4070. </summary>
  4071. </member>
  4072. <member name="T:CommonLang.Property.FilePathAttribute">
  4073. <summary>
  4074. 标识 Field 字段为文件
  4075. </summary>
  4076. </member>
  4077. <member name="T:CommonLang.Property.DirectoryPathAttribute">
  4078. <summary>
  4079. 标识 Field 字段为目录
  4080. </summary>
  4081. </member>
  4082. <member name="M:CommonLang.Property.Catgorys.GetTypeDescAttribute(System.Type)">
  4083. <summary>
  4084. 找到Type对应的TypeDescAttribute
  4085. </summary>
  4086. <param name="type"></param>
  4087. <returns></returns>
  4088. </member>
  4089. <member name="M:CommonLang.Property.Modeling.UmlValueNode.SetValue(System.Object)">
  4090. <summary>
  4091. 设置当前节点值(此操作 将改变当前节点结构)
  4092. </summary>
  4093. <param name="value"></param>
  4094. </member>
  4095. <member name="M:CommonLang.Property.Modeling.UmlValueNode.SetFieldValue(CommonLang.Property.Modeling.UmlValueNode,System.Object)">
  4096. <summary>
  4097. 设置当前节点值(此操作 将改变当前节点结构)
  4098. </summary>
  4099. </member>
  4100. <member name="M:CommonLang.Property.Modeling.UmlUtils.UmlListSameElements.ListSameElements(CommonLang.Property.Modeling.UmlDocument[])">
  4101. <summary>
  4102. 保留结构相同部分
  4103. </summary>
  4104. <param name="list"></param>
  4105. <returns></returns>
  4106. </member>
  4107. <member name="M:CommonLang.Property.Modeling.UmlUtils.StructEquationBalancer(System.Object,System.Object)">
  4108. <summary>
  4109. 将两个结构内部配平,
  4110. 比如A对象内的一个数组为2个,B对象内部数组为4个,那么调用后,A对象内的数组将补齐为4个
  4111. </summary>
  4112. <param name="src"></param>
  4113. <param name="dst"></param>
  4114. <returns>是否发生变化</returns>
  4115. </member>
  4116. <member name="M:CommonLang.Property.Modeling.UmlUtils.UmlBalancer.BalanceList(System.Collections.IList,System.Collections.IList)">
  4117. <summary>
  4118. 将两个数组配平,少的自动补齐
  4119. </summary>
  4120. <param name="src"></param>
  4121. <param name="dst"></param>
  4122. <returns></returns>
  4123. </member>
  4124. <member name="M:CommonLang.Property.Modeling.UmlUtils.UmlBalancer.BalanceArray(System.Array@,System.Array@)">
  4125. <summary>
  4126. 将两个数组配平,少的自动补齐
  4127. </summary>
  4128. <param name="src"></param>
  4129. <param name="dst"></param>
  4130. <returns></returns>
  4131. </member>
  4132. <member name="M:CommonLang.Property.Modeling.UmlUtils.UmlBalancer.FillArray(System.Collections.ArrayList,System.Collections.ArrayList,System.Array,System.Int32[])">
  4133. <summary>
  4134. 将ret按照more标准配平
  4135. </summary>
  4136. <param name="more"></param>
  4137. <param name="less"></param>
  4138. <param name="ret"></param>
  4139. <param name="ranges"></param>
  4140. </member>
  4141. <member name="M:CommonLang.Property.Modeling.UmlUtils.StructEquals(System.Collections.Generic.List{CommonLang.Property.Modeling.UmlNode},System.Collections.Generic.List{CommonLang.Property.Modeling.UmlNode})">
  4142. <summary>
  4143. 深度判断结构是否一致
  4144. </summary>
  4145. <param name="r0"></param>
  4146. <param name="r1"></param>
  4147. <returns></returns>
  4148. </member>
  4149. <member name="M:CommonLang.Property.PropertyUtil.CollectFieldTypeValues``1(System.Object,System.Collections.Generic.List{``0})">
  4150. <summary>
  4151. 将一个对象里面所有的Attribute的标记的Field值,全部取出
  4152. </summary>
  4153. <typeparam name="T"></typeparam>
  4154. <param name="data"></param>
  4155. <param name="collection"></param>
  4156. <returns></returns>
  4157. </member>
  4158. <member name="M:CommonLang.Property.PropertyUtil.CollectFieldAttributeValues(System.Object,System.Type,System.Collections.Generic.List{CommonLang.Property.FieldAttributeValue})">
  4159. <summary>
  4160. 将一个对象里面所有的Attribute的标记的Field值,全部取出
  4161. </summary>
  4162. <param name="data"></param>
  4163. <param name="attributeType"></param>
  4164. <param name="collection"></param>
  4165. </member>
  4166. <member name="M:CommonLang.Property.PropertyUtil.ToTypeDefineString(System.Type)">
  4167. <summary>
  4168. 返回书写习惯的类型字符串
  4169. </summary>
  4170. <param name="type"></param>
  4171. <returns></returns>
  4172. </member>
  4173. <member name="M:CommonLang.Property.TypeDescAttribute.GetDescText(System.Type)">
  4174. <summary>
  4175. 如果此类型有DescAttribute签名,则返回Desc
  4176. </summary>
  4177. <param name="type"></param>
  4178. <returns></returns>
  4179. </member>
  4180. <member name="M:CommonLang.Property.TypeDescAttribute.GetCatgoryName(System.Type)">
  4181. <summary>
  4182. 如果此类型有DescAttribute签名,则返回Catgory
  4183. </summary>
  4184. <param name="type"></param>
  4185. <returns></returns>
  4186. </member>
  4187. <member name="M:CommonLang.Property.ReflectionUtil.GetNoneVirtualSubTypes(System.Type)">
  4188. <summary>
  4189. 获取所有匹配的非虚子类
  4190. </summary>
  4191. <param name="superType"></param>
  4192. <returns></returns>
  4193. </member>
  4194. <member name="M:CommonLang.Property.ReflectionUtil.GetNoneVirtualSubDescTypes(System.Type)">
  4195. <summary>
  4196. 获取所有匹配的非虚子类,每个类必须标注DescAttribute
  4197. </summary>
  4198. <param name="superType"></param>
  4199. <returns></returns>
  4200. </member>
  4201. <member name="T:CommonLang.ByteOrder.VLQEdian">
  4202. <summary>
  4203. VLQ Int取值范围21位
  4204. </summary>
  4205. </member>
  4206. <member name="M:CommonLang.ByteOrder.VLQEdian.PutS32(System.Byte[],System.Int32@,System.Int32)">
  4207. <summary>
  4208. save a value to data with Variable Length Queue (0xaa,0xbb,0xcc,0xdd = 0xaabbccdd)
  4209. </summary>
  4210. <param name="data"></param>
  4211. <param name="p"></param>
  4212. <param name="value"></param>
  4213. <returns></returns>
  4214. </member>
  4215. <member name="M:CommonLang.ByteOrder.VLQEdian.GetS32(System.Byte[],System.Int32@)">
  4216. <summary>
  4217. read a value to data with Variable Length Queue (0xaa,0xbb,0xcc,0xdd = 0xaabbccdd)
  4218. </summary>
  4219. <param name="data"></param>
  4220. <param name="p"></param>
  4221. <returns>int[0] how many bytes ;int[1] value</returns>
  4222. </member>
  4223. <member name="M:CommonLang.HashMap`2.TryAdd(`0,`1)">
  4224. <summary>
  4225. 添加成功返回true
  4226. </summary>
  4227. <param name="key"></param>
  4228. <param name="val"></param>
  4229. <returns></returns>
  4230. </member>
  4231. <member name="M:CommonLang.Properties.LoadFields(System.Object)">
  4232. <summary>
  4233. 通常载入配置文件
  4234. </summary>
  4235. <param name="cfg"></param>
  4236. </member>
  4237. <member name="M:CommonLang.SyncMessageQueue`1.Enqueue(`0)">
  4238. <summary>
  4239. 添加一个消息到队列
  4240. </summary>
  4241. <param name="item"></param>
  4242. </member>
  4243. <member name="M:CommonLang.SyncMessageQueue`1.ProcessMessages(System.Action{`0})">
  4244. <summary>
  4245. 尝试处理队列中所有消息
  4246. </summary>
  4247. <param name="action">处理函数</param>
  4248. </member>
  4249. <member name="M:CommonLang.SyncMessageQueueAction`1.Enqueue(System.Action{`0})">
  4250. <summary>
  4251. 添加一个消息到队列
  4252. </summary>
  4253. <param name="item"></param>
  4254. </member>
  4255. <member name="M:CommonLang.SyncMessageQueueAction`1.ProcessMessages(`0)">
  4256. <summary>
  4257. </summary>
  4258. <param name="param"></param>
  4259. </member>
  4260. <member name="M:CommonLang.SyncMessageQueue2.Enqueue(System.Action)">
  4261. <summary>
  4262. 添加一个消息到队列
  4263. </summary>
  4264. <param name="item"></param>
  4265. </member>
  4266. <member name="M:CommonLang.SyncMessageQueue2.ProcessMessages">
  4267. <summary>
  4268. 尝试处理队列中所有消息
  4269. </summary>
  4270. </member>
  4271. <member name="T:CommonLang.CMath">
  4272. util math function none float
  4273. @author yifeizhang
  4274. @since 2006-12-1
  4275. @version 1.0
  4276. </member>
  4277. <member name="M:CommonLang.CMath.cycNum(System.Int32,System.Int32,System.Int32)">
  4278. <summary>
  4279. compute cyc number: (value+d) within 0~max scope
  4280. </summary>
  4281. <param name="value"></param>
  4282. <param name="d"></param>
  4283. <param name="max"></param>
  4284. <returns></returns>
  4285. </member>
  4286. <member name="M:CommonLang.CMath.cycNum(System.Int32,System.Int32)">
  4287. <summary>
  4288. compute cyc number: (value+d) within 0~max scope
  4289. </summary>
  4290. <param name="value"></param>
  4291. <param name="max"></param>
  4292. <returns></returns>
  4293. </member>
  4294. <member name="M:CommonLang.CMath.cycMod(System.Int32,System.Int32)">
  4295. <summary>
  4296. compute cyc mod: -1 mod 10 = -1
  4297. </summary>
  4298. <param name="value"></param>
  4299. <param name="div"></param>
  4300. <returns></returns>
  4301. </member>
  4302. <member name="M:CommonLang.CMath.getDirect(System.Int32)">
  4303. <summary>
  4304. 获得符号
  4305. </summary>
  4306. <param name="value"></param>
  4307. <returns>1 or 0 or -1</returns>
  4308. </member>
  4309. <member name="M:CommonLang.CMath.getDirect(System.Single)">
  4310. <summary>
  4311. 获得符号
  4312. </summary>
  4313. <param name="value"></param>
  4314. <returns></returns>
  4315. </member>
  4316. <member name="M:CommonLang.CMath.roundMod(System.Int32,System.Int32)">
  4317. <summary>
  4318. comput round mod roundMode(33,8) = 5 => 33/8 + (33%8==0?:0:1)
  4319. </summary>
  4320. <param name="value"></param>
  4321. <param name="div"></param>
  4322. <returns></returns>
  4323. </member>
  4324. <member name="M:CommonLang.CMath.roundMod(System.Single,System.Single)">
  4325. <summary>
  4326. comput round mod roundMode(33,8) = 5 => 33/8 + (33%8==0?:0:1)
  4327. </summary>
  4328. <param name="value"></param>
  4329. <param name="div"></param>
  4330. <returns></returns>
  4331. </member>
  4332. <member name="M:CommonLang.CMath.getDistanceSpeedInTime(System.Single,System.Single)">
  4333. <summary>
  4334. 根据速度和时间段得到距离
  4335. </summary>
  4336. <param name="speed">速度 (距离/秒)</param>
  4337. <param name="interval_ms">毫秒</param>
  4338. <returns></returns>
  4339. </member>
  4340. <member name="M:CommonLang.CMath.getDistance(System.Single,System.Single,System.Single,System.Single)">
  4341. <summary>
  4342. </summary>
  4343. <param name="x1"></param>
  4344. <param name="y1"></param>
  4345. <param name="x2"></param>
  4346. <param name="y2"></param>
  4347. <returns></returns>
  4348. </member>
  4349. <member name="M:CommonLang.CMath.getDistanceSquare(System.Single,System.Single,System.Single,System.Single)">
  4350. <summary>
  4351. </summary>
  4352. <param name="x1"></param>
  4353. <param name="y1"></param>
  4354. <param name="x2"></param>
  4355. <param name="y2"></param>
  4356. <returns></returns>
  4357. </member>
  4358. <member name="M:CommonLang.CMath.includeFanPoint(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4359. <summary>
  4360. 扇形和圆相交
  4361. </summary>
  4362. <param name="sx">扇形圆心</param>
  4363. <param name="sy">扇形圆心</param>
  4364. <param name="sr">扇形半径</param>
  4365. <param name="dx">点</param>
  4366. <param name="dy">点</param>
  4367. <param name="startAngle">扇形起始角度</param>
  4368. <param name="endAngle">扇形结束角度</param>
  4369. <returns></returns>
  4370. </member>
  4371. <member name="M:CommonLang.CMath.includeRoundPoint(System.Single,System.Single,System.Single,System.Single,System.Single)">
  4372. <summary>
  4373. </summary>
  4374. <param name="sx">圆x</param>
  4375. <param name="sy">圆y</param>
  4376. <param name="sr">圆r</param>
  4377. <param name="px">点</param>
  4378. <param name="py">点</param>
  4379. <returns></returns>
  4380. </member>
  4381. <member name="M:CommonLang.CMath.includeRound2(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4382. <summary>
  4383. </summary>
  4384. <param name="sx">圆1x</param>
  4385. <param name="sy">圆1y</param>
  4386. <param name="sr">圆1r</param>
  4387. <param name="dx">圆2x</param>
  4388. <param name="dy">圆2y</param>
  4389. <param name="dr">圆2r</param>
  4390. <returns></returns>
  4391. </member>
  4392. <member name="M:CommonLang.CMath.includeRectPoint(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4393. <summary>
  4394. </summary>
  4395. <param name="sx1">矩形x1</param>
  4396. <param name="sy1">矩形y1</param>
  4397. <param name="sx2">矩形x2</param>
  4398. <param name="sy2">矩形y2</param>
  4399. <param name="dx">点</param>
  4400. <param name="dy">点</param>
  4401. <returns></returns>
  4402. </member>
  4403. <member name="M:CommonLang.CMath.includeRectPoint2(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4404. <summary>
  4405. </summary>
  4406. <param name="sx1">矩形x</param>
  4407. <param name="sy1">矩形y</param>
  4408. <param name="sw">矩形w</param>
  4409. <param name="sh">矩形h</param>
  4410. <param name="dx">点</param>
  4411. <param name="dy">点</param>
  4412. <returns></returns>
  4413. </member>
  4414. <member name="M:CommonLang.CMath.includeEllipsePoint(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4415. <summary>
  4416. 点在椭圆内
  4417. </summary>
  4418. <param name="x0">椭圆X</param>
  4419. <param name="y0">椭圆Y</param>
  4420. <param name="rx">椭圆宽</param>
  4421. <param name="ry">椭圆高</param>
  4422. <param name="dx">点</param>
  4423. <param name="dy">点</param>
  4424. <returns></returns>
  4425. </member>
  4426. <member name="M:CommonLang.CMath.includeStripWidthPoint(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4427. <summary>
  4428. 点在粗线条内
  4429. </summary>
  4430. <param name="lx1">线段X1</param>
  4431. <param name="ly1">线段Y1</param>
  4432. <param name="lx2">线段X2</param>
  4433. <param name="ly2">线段Y2</param>
  4434. <param name="line_r">线段半径(粗度的一半)</param>
  4435. <param name="dx">点</param>
  4436. <param name="dy">点</param>
  4437. <returns></returns>
  4438. </member>
  4439. <member name="M:CommonLang.CMath.includePolygonPoint(CommonLang.Geometry.Vector2[],System.Single,System.Single)">
  4440. <summary>
  4441. 点在多边形内
  4442. </summary>
  4443. <param name="list">多边形</param>
  4444. <param name="dx">点</param>
  4445. <param name="dy">点</param>
  4446. <returns></returns>
  4447. </member>
  4448. <member name="M:CommonLang.CMath.intersectRound(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4449. <summary>
  4450. 两圆相交
  4451. </summary>
  4452. <param name="sx">圆1x</param>
  4453. <param name="sy">圆1y</param>
  4454. <param name="sr">圆1r</param>
  4455. <param name="dx">圆2x</param>
  4456. <param name="dy">圆2y</param>
  4457. <param name="dr">圆2r</param>
  4458. <returns></returns>
  4459. </member>
  4460. <member name="M:CommonLang.CMath.intersectFanRound(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4461. <summary>
  4462. 扇形和圆相交
  4463. </summary>
  4464. <param name="sx">扇形圆心</param>
  4465. <param name="sy">扇形圆心</param>
  4466. <param name="sr">扇形半径</param>
  4467. <param name="dx">圆形中心</param>
  4468. <param name="dy">圆形中心</param>
  4469. <param name="dr">圆形半径</param>
  4470. <param name="startAngle">扇形起始角(弧度)</param>
  4471. <param name="endAngle">扇形结束角(弧度)</param>
  4472. <returns></returns>
  4473. </member>
  4474. <member name="M:CommonLang.CMath.intersectRect(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4475. <summary>
  4476. 两矩形相交
  4477. </summary>
  4478. <param name="sx1">矩形1</param>
  4479. <param name="sy1">矩形1</param>
  4480. <param name="sx2">矩形1</param>
  4481. <param name="sy2">矩形1</param>
  4482. <param name="dx1">矩形2</param>
  4483. <param name="dy1">矩形2</param>
  4484. <param name="dx2">矩形2</param>
  4485. <param name="dy2">矩形2</param>
  4486. <returns></returns>
  4487. </member>
  4488. <member name="M:CommonLang.CMath.intersectRect2(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4489. <summary>
  4490. 两矩形相交(宽高)
  4491. </summary>
  4492. <param name="sx1">矩形1</param>
  4493. <param name="sy1">矩形1</param>
  4494. <param name="sw"> 矩形1</param>
  4495. <param name="sh"> 矩形1</param>
  4496. <param name="dx1">矩形2</param>
  4497. <param name="dy1">矩形2</param>
  4498. <param name="dw"> 矩形2</param>
  4499. <param name="dh"> 矩形2</param>
  4500. <returns></returns>
  4501. </member>
  4502. <member name="M:CommonLang.CMath.intersectRectLine(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4503. <summary>
  4504. 矩形和线段相交
  4505. </summary>
  4506. <param name="sx1">矩形</param>
  4507. <param name="sy1">矩形</param>
  4508. <param name="sx2">矩形</param>
  4509. <param name="sy2">矩形</param>
  4510. <param name="lx1">线段</param>
  4511. <param name="ly1">线段</param>
  4512. <param name="lx2">线段</param>
  4513. <param name="ly2">线段</param>
  4514. <returns></returns>
  4515. </member>
  4516. <member name="M:CommonLang.CMath.intersectRectRound(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4517. <summary>
  4518. 矩形和圆相交
  4519. </summary>
  4520. <param name="sx">矩形</param>
  4521. <param name="sy">矩形</param>
  4522. <param name="dx">矩形</param>
  4523. <param name="dy">矩形</param>
  4524. <param name="cx">圆形</param>
  4525. <param name="cy">圆形</param>
  4526. <param name="r">圆形</param>
  4527. <returns></returns>
  4528. </member>
  4529. <member name="M:CommonLang.CMath.intersectRectEllipse(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4530. <summary>
  4531. 计算椭圆和矩形是否相交
  4532. (x/rx)^2 + (y/ry)^2 = 1;
  4533. left is: (x* ry)^2 + (y* rx)^2
  4534. right is: (rx* ry)^2
  4535. if(left > right) out
  4536. else in
  4537. </summary>
  4538. <param name="xmin">矩形左上角x</param>
  4539. <param name="ymin">矩形左上角y</param>
  4540. <param name="xmax">矩形右下角x</param>
  4541. <param name="ymax">矩形右下角y</param>
  4542. <param name="x0">椭圆圆心x </param>
  4543. <param name="y0">椭圆圆心y </param>
  4544. <param name="rx">椭圆x轴半径</param>
  4545. <param name="ry">椭圆y轴半径</param>
  4546. <returns></returns>
  4547. </member>
  4548. <member name="M:CommonLang.CMath.intersectLine(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4549. <summary>
  4550. 两个线段相交
  4551. ((Q2-Q1)X(P1-Q1))*((P2-Q1)X(Q2-Q1)) >= 0
  4552. ((P2-P1)X(Q1-P1))*((Q2-P1)X(P2-P1)) >= 0
  4553. </summary>
  4554. <param name="p1_x">line 1</param>
  4555. <param name="p1_y">line 1</param>
  4556. <param name="p2_x">line 1</param>
  4557. <param name="p2_y">line 1</param>
  4558. <param name="q1_x">line 2</param>
  4559. <param name="q1_y">line 2</param>
  4560. <param name="q2_x">line 2</param>
  4561. <param name="q2_y">line 2</param>
  4562. <returns></returns>
  4563. </member>
  4564. <member name="M:CommonLang.CMath.intersectLine(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Boolean)">
  4565. <summary>
  4566. 两个线段相交
  4567. ((Q2-Q1)X(P1-Q1))*((P2-Q1)X(Q2-Q1)) >= 0
  4568. ((P2-P1)X(Q1-P1))*((Q2-P1)X(P2-P1)) >= 0
  4569. </summary>
  4570. <param name="p1_x">line 1</param>
  4571. <param name="p1_y">line 1</param>
  4572. <param name="p2_x">line 1</param>
  4573. <param name="p2_y">line 1</param>
  4574. <param name="q1_x">line 2</param>
  4575. <param name="q1_y">line 2</param>
  4576. <param name="q2_x">line 2</param>
  4577. <param name="q2_y">line 2</param>
  4578. <param name="ignore_touch">忽略焦点在线段内</param>
  4579. <returns></returns>
  4580. </member>
  4581. <member name="M:CommonLang.CMath.intersectLineRound(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4582. <summary>
  4583. 求线段与圆碰撞
  4584. </summary>
  4585. <param name="lx1">线段起点</param>
  4586. <param name="ly1">线段起点</param>
  4587. <param name="lx2">线段终点</param>
  4588. <param name="ly2">线段终点</param>
  4589. <param name="cx">圆心坐标</param>
  4590. <param name="cy">圆心坐标</param>
  4591. <param name="Radius">半径</param>
  4592. <returns>如果有交点返回true,否则返回false</returns>
  4593. </member>
  4594. <member name="M:CommonLang.CMath.intersectRoundStripCapsule(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4595. <summary>
  4596. 圆与胶囊线段碰撞检测
  4597. 性能远好于 intersetctRoundStripWidth
  4598. </summary>
  4599. <param name="lx1">线段</param>
  4600. <param name="ly1">线段</param>
  4601. <param name="lx2">线段</param>
  4602. <param name="ly2">线段</param>
  4603. <param name="line_r">线段半径(粗度的一半)</param>
  4604. <param name="cx">圆形</param>
  4605. <param name="cy">圆形</param>
  4606. <param name="r">圆形</param>
  4607. <returns></returns>
  4608. </member>
  4609. <member name="M:CommonLang.CMath.intersectRoundStripWidth(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4610. <summary>
  4611. 圆与线段碰撞检测
  4612. 性能较差
  4613. </summary>
  4614. <param name="lx1">线段</param>
  4615. <param name="ly1">线段</param>
  4616. <param name="lx2">线段</param>
  4617. <param name="ly2">线段</param>
  4618. <param name="line_r">线段半径(粗度的一半)</param>
  4619. <param name="cx">圆形</param>
  4620. <param name="cy">圆形</param>
  4621. <param name="r">圆形</param>
  4622. <returns></returns>
  4623. </member>
  4624. <member name="M:CommonLang.CMath.intersectRectStripWidth(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4625. <summary>
  4626. 矩形与粗线段相交
  4627. </summary>
  4628. <param name="sx1">矩形</param>
  4629. <param name="sy1">矩形</param>
  4630. <param name="sx2">矩形</param>
  4631. <param name="sy2">矩形</param>
  4632. <param name="lx1">线段</param>
  4633. <param name="ly1">线段</param>
  4634. <param name="lx2">线段</param>
  4635. <param name="ly2">线段</param>
  4636. <param name="line_r">线段半径(粗度的一半)</param>
  4637. <returns></returns>
  4638. </member>
  4639. <member name="M:CommonLang.CMath.intersectRoundPolygon(System.Single,System.Single,System.Single,CommonLang.Geometry.Vector2[])">
  4640. <summary>
  4641. 圆形与多边形碰撞
  4642. </summary>
  4643. <param name="cx">圆形</param>
  4644. <param name="cy">圆形</param>
  4645. <param name="r">圆形</param>
  4646. <param name="list">多边形</param>
  4647. <returns></returns>
  4648. </member>
  4649. <member name="M:CommonLang.CMath.intersectRectPolygon(System.Single,System.Single,System.Single,System.Single,CommonLang.Geometry.Vector2[])">
  4650. <summary>
  4651. 矩形与多边形碰撞
  4652. </summary>
  4653. <param name="sx1">矩形</param>
  4654. <param name="sy1">矩形</param>
  4655. <param name="sx2">矩形</param>
  4656. <param name="sy2">矩形</param>
  4657. <param name="list">多边形</param>
  4658. <returns></returns>
  4659. </member>
  4660. <member name="M:CommonLang.CMath.toStripWidthPolygon(System.Single,System.Single,System.Single,System.Single,System.Single)">
  4661. <summary>
  4662. 获得粗线段多边形表达式
  4663. </summary>
  4664. <param name="lx1">线段</param>
  4665. <param name="ly1">线段</param>
  4666. <param name="lx2">线段</param>
  4667. <param name="ly2">线段</param>
  4668. <param name="line_r">线段半径(粗度的一半)</param>
  4669. <returns>多边形</returns>
  4670. </member>
  4671. <member name="M:CommonLang.CMath.toBoundingBox(CommonLang.Geometry.Vector2[],CommonLang.Geometry.Vector2@,CommonLang.Geometry.Vector2@)">
  4672. <summary>
  4673. 获取多边形外包框
  4674. </summary>
  4675. <param name="list"></param>
  4676. <param name="min"></param>
  4677. <param name="max"></param>
  4678. </member>
  4679. <member name="M:CommonLang.CMath.isIncludeEqual(System.Int32,System.Int32,System.Int32)">
  4680. <summary>
  4681. max 大于等于 value 并且 min 小于等于 value
  4682. </summary>
  4683. <param name="value"></param>
  4684. <param name="min"></param>
  4685. <param name="max"></param>
  4686. <returns></returns>
  4687. </member>
  4688. <member name="M:CommonLang.CMath.isInclude(System.Int32,System.Int32,System.Int32)">
  4689. <summary>
  4690. max 大于 value 并且 min 小于 value
  4691. </summary>
  4692. <param name="value"></param>
  4693. <param name="min"></param>
  4694. <param name="max"></param>
  4695. <returns></returns>
  4696. </member>
  4697. <!-- Badly formed XML comment ignored for member "M:CommonLang.CMath.isInRange(System.Int32,System.Int32)" -->
  4698. <member name="M:CommonLang.CMath.getInRange(System.Single,System.Single,System.Single)">
  4699. <summary>
  4700. 将值定位于min和max之间
  4701. </summary>
  4702. <param name="value"></param>
  4703. <param name="min"></param>
  4704. <param name="max">包含</param>
  4705. <returns></returns>
  4706. </member>
  4707. <member name="M:CommonLang.CMath.getRate(System.Single,System.Single,System.Single)">
  4708. <summary>
  4709. 获得值在最大与最小之间的比率
  4710. </summary>
  4711. <param name="value"></param>
  4712. <param name="min_v"></param>
  4713. <param name="max_v"></param>
  4714. <returns></returns>
  4715. </member>
  4716. <member name="M:CommonLang.CMath.getMiddleValue(System.Single,System.Single,System.Single)">
  4717. <summary>
  4718. 将比率换算为实际值
  4719. </summary>
  4720. <param name="rate"></param>
  4721. <param name="min"></param>
  4722. <param name="max"></param>
  4723. <returns></returns>
  4724. </member>
  4725. <member name="F:CommonLang.CMath.PI_DIV_180">
  4726. <summary>
  4727. Math.PI / 180
  4728. </summary>
  4729. </member>
  4730. <member name="F:CommonLang.CMath.PI_DIV_2">
  4731. <summary>
  4732. Math.PI / 2
  4733. </summary>
  4734. </member>
  4735. <member name="F:CommonLang.CMath.PI_MUL_2">
  4736. <summary>
  4737. Math.PI * 2
  4738. </summary>
  4739. </member>
  4740. <member name="M:CommonLang.CMath.DegreesToRadians(System.Single)">
  4741. <summary>
  4742. 角度转弧度
  4743. </summary>
  4744. <param name="degrees"></param>
  4745. <returns></returns>
  4746. </member>
  4747. <member name="M:CommonLang.CMath.RadiansToDegrees(System.Single)">
  4748. <summary>
  4749. 弧度转角度
  4750. </summary>
  4751. <param name="radians"></param>
  4752. <returns></returns>
  4753. </member>
  4754. <member name="M:CommonLang.CMath.OpitimizeDegrees(System.Single)">
  4755. <summary>
  4756. 将角度控制在360度范围内
  4757. </summary>
  4758. <param name="degrees"></param>
  4759. <returns></returns>
  4760. </member>
  4761. <member name="M:CommonLang.CMath.OpitimizeRadians(System.Single)">
  4762. <summary>
  4763. 将弧度控制在2PI度范围内
  4764. </summary>
  4765. <param name="degrees"></param>
  4766. <returns></returns>
  4767. </member>
  4768. <member name="M:CommonLang.CMath.RadiansInRange(System.Single,System.Single,System.Single)">
  4769. <summary>
  4770. 判断弧度是否在范围内
  4771. </summary>
  4772. <param name="angle"></param>
  4773. <param name="startAngle"></param>
  4774. <param name="endAngle"></param>
  4775. <returns></returns>
  4776. </member>
  4777. <member name="M:CommonLang.CMath.GetMinRadians(System.Single,System.Single)">
  4778. <summary>
  4779. 获取两个角度间的最小距离
  4780. </summary>
  4781. <param name="src_angle"></param>
  4782. <param name="dst_angle"></param>
  4783. <returns></returns>
  4784. </member>
  4785. <member name="M:CommonLang.CMath.PointOnLine(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
  4786. <summary>
  4787. 输入三个点,并且判断第三个点在前两个点连成的直线的左边还是右边或者是在线上
  4788. </summary>
  4789. <param name="x0"></param>
  4790. <param name="y0"></param>
  4791. <param name="x1"></param>
  4792. <param name="y1"></param>
  4793. <param name="x2"></param>
  4794. <param name="y2"></param>
  4795. <returns></returns>
  4796. </member>
  4797. <member name="M:CommonLang.CUtils.FormatTime(System.DateTime,System.String)">
  4798. <summary>
  4799. </summary>
  4800. <param name="time"></param>
  4801. <param name="format">YYMMDD_hhmmss</param>
  4802. <returns></returns>
  4803. </member>
  4804. <member name="M:CommonLang.CUtils.FormatTime(System.Int32,System.String)">
  4805. <summary>
  4806. </summary>
  4807. <param name="seconds"></param>
  4808. <param name="format">hhmmss</param>
  4809. <returns></returns>
  4810. </member>
  4811. <member name="M:CommonLang.XCSV.CsvParser.LoadCSVObjectList``1(System.String,System.Int32,System.Int32,System.Char,System.Char)">
  4812. <summary>
  4813. 解析CSV对象组,仅支持二维
  4814. </summary>
  4815. <typeparam name="T">列表对象</typeparam>
  4816. <param name="csv_text">CSV文本</param>
  4817. <param name="row_index">起始行</param>
  4818. <param name="column_index">起始列</param>
  4819. <param name="f_split">内容分隔符</param>
  4820. <param name="o_split">组分隔符</param>
  4821. <returns></returns>
  4822. </member>
  4823. <member name="M:CommonLang.XCSV.CsvParser.TextStreamToAny(System.String,System.Type,System.Char,System.Char)">
  4824. <summary>
  4825. 文本序列转化为任何对象
  4826. </summary>
  4827. <param name="ftext">文本</param>
  4828. <param name="type">解析类型</param>
  4829. <param name="f_split">内容分隔符</param>
  4830. <param name="o_split">组分隔符</param>
  4831. <returns></returns>
  4832. </member>
  4833. <member name="M:CommonLang.XCSV.CsvParser.TextStreamToList(System.String,System.Type,System.Char,System.Char)">
  4834. <summary>
  4835. 文本序列转化为对象列表
  4836. </summary>
  4837. <param name="ftext">文本</param>
  4838. <param name="type">解析类型</param>
  4839. <param name="f_split">内容分隔符</param>
  4840. <param name="o_split">组分隔符</param>
  4841. <returns></returns>
  4842. </member>
  4843. <member name="M:CommonLang.XCSV.CsvParser.TextStreamToObject(System.String,System.Type,System.Char)">
  4844. <summary>
  4845. 文本序列转化为对象
  4846. </summary>
  4847. <param name="ftext">文本</param>
  4848. <param name="type">解析类型</param>
  4849. <param name="f_split">内容分隔符</param>
  4850. <returns></returns>
  4851. </member>
  4852. <member name="M:CommonLang.XCSV.CsvParser.IsTypePrimitive(System.Type)">
  4853. <summary>
  4854. 基础类型或者字符串
  4855. </summary>
  4856. <param name="type"></param>
  4857. <returns></returns>
  4858. </member>
  4859. <member name="T:CommonLang.Xml.XmlSerializableAttribute">
  4860. <summary>
  4861. 标记当前Field或者Property是否参与Xml序列化
  4862. </summary>
  4863. </member>
  4864. <member name="T:CommonLang.Xml.XmlUtil">
  4865. <summary>
  4866. Xml序列化与反序列化
  4867. </summary>
  4868. </member>
  4869. </members>
  4870. </doc>