uint4.gen.cs 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. using System;
  10. using System.Runtime.CompilerServices;
  11. using System.Diagnostics;
  12. #pragma warning disable 0660, 0661
  13. namespace Unity.Mathematics
  14. {
  15. [DebuggerTypeProxy(typeof(uint4.DebuggerProxy))]
  16. [System.Serializable]
  17. public partial struct uint4 : System.IEquatable<uint4>, IFormattable
  18. {
  19. public uint x;
  20. public uint y;
  21. public uint z;
  22. public uint w;
  23. /// <summary>uint4 zero value.</summary>
  24. public static readonly uint4 zero;
  25. /// <summary>Constructs a uint4 vector from four uint values.</summary>
  26. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  27. public uint4(uint x, uint y, uint z, uint w)
  28. {
  29. this.x = x;
  30. this.y = y;
  31. this.z = z;
  32. this.w = w;
  33. }
  34. /// <summary>Constructs a uint4 vector from two uint values and a uint2 vector.</summary>
  35. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  36. public uint4(uint x, uint y, uint2 zw)
  37. {
  38. this.x = x;
  39. this.y = y;
  40. this.z = zw.x;
  41. this.w = zw.y;
  42. }
  43. /// <summary>Constructs a uint4 vector from a uint value, a uint2 vector and a uint value.</summary>
  44. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  45. public uint4(uint x, uint2 yz, uint w)
  46. {
  47. this.x = x;
  48. this.y = yz.x;
  49. this.z = yz.y;
  50. this.w = w;
  51. }
  52. /// <summary>Constructs a uint4 vector from a uint value and a uint3 vector.</summary>
  53. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  54. public uint4(uint x, uint3 yzw)
  55. {
  56. this.x = x;
  57. this.y = yzw.x;
  58. this.z = yzw.y;
  59. this.w = yzw.z;
  60. }
  61. /// <summary>Constructs a uint4 vector from a uint2 vector and two uint values.</summary>
  62. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  63. public uint4(uint2 xy, uint z, uint w)
  64. {
  65. this.x = xy.x;
  66. this.y = xy.y;
  67. this.z = z;
  68. this.w = w;
  69. }
  70. /// <summary>Constructs a uint4 vector from two uint2 vectors.</summary>
  71. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  72. public uint4(uint2 xy, uint2 zw)
  73. {
  74. this.x = xy.x;
  75. this.y = xy.y;
  76. this.z = zw.x;
  77. this.w = zw.y;
  78. }
  79. /// <summary>Constructs a uint4 vector from a uint3 vector and a uint value.</summary>
  80. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  81. public uint4(uint3 xyz, uint w)
  82. {
  83. this.x = xyz.x;
  84. this.y = xyz.y;
  85. this.z = xyz.z;
  86. this.w = w;
  87. }
  88. /// <summary>Constructs a uint4 vector from a uint4 vector.</summary>
  89. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  90. public uint4(uint4 xyzw)
  91. {
  92. this.x = xyzw.x;
  93. this.y = xyzw.y;
  94. this.z = xyzw.z;
  95. this.w = xyzw.w;
  96. }
  97. /// <summary>Constructs a uint4 vector from a single uint value by assigning it to every component.</summary>
  98. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  99. public uint4(uint v)
  100. {
  101. this.x = v;
  102. this.y = v;
  103. this.z = v;
  104. this.w = v;
  105. }
  106. /// <summary>Constructs a uint4 vector from a single bool value by converting it to uint and assigning it to every component.</summary>
  107. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  108. public uint4(bool v)
  109. {
  110. this.x = v ? 1u : 0u;
  111. this.y = v ? 1u : 0u;
  112. this.z = v ? 1u : 0u;
  113. this.w = v ? 1u : 0u;
  114. }
  115. /// <summary>Constructs a uint4 vector from a bool4 vector by componentwise conversion.</summary>
  116. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  117. public uint4(bool4 v)
  118. {
  119. this.x = v.x ? 1u : 0u;
  120. this.y = v.y ? 1u : 0u;
  121. this.z = v.z ? 1u : 0u;
  122. this.w = v.w ? 1u : 0u;
  123. }
  124. /// <summary>Constructs a uint4 vector from a single int value by converting it to uint and assigning it to every component.</summary>
  125. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  126. public uint4(int v)
  127. {
  128. this.x = (uint)v;
  129. this.y = (uint)v;
  130. this.z = (uint)v;
  131. this.w = (uint)v;
  132. }
  133. /// <summary>Constructs a uint4 vector from a int4 vector by componentwise conversion.</summary>
  134. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  135. public uint4(int4 v)
  136. {
  137. this.x = (uint)v.x;
  138. this.y = (uint)v.y;
  139. this.z = (uint)v.z;
  140. this.w = (uint)v.w;
  141. }
  142. /// <summary>Constructs a uint4 vector from a single float value by converting it to uint and assigning it to every component.</summary>
  143. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  144. public uint4(float v)
  145. {
  146. this.x = (uint)v;
  147. this.y = (uint)v;
  148. this.z = (uint)v;
  149. this.w = (uint)v;
  150. }
  151. /// <summary>Constructs a uint4 vector from a float4 vector by componentwise conversion.</summary>
  152. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  153. public uint4(float4 v)
  154. {
  155. this.x = (uint)v.x;
  156. this.y = (uint)v.y;
  157. this.z = (uint)v.z;
  158. this.w = (uint)v.w;
  159. }
  160. /// <summary>Constructs a uint4 vector from a single double value by converting it to uint and assigning it to every component.</summary>
  161. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  162. public uint4(double v)
  163. {
  164. this.x = (uint)v;
  165. this.y = (uint)v;
  166. this.z = (uint)v;
  167. this.w = (uint)v;
  168. }
  169. /// <summary>Constructs a uint4 vector from a double4 vector by componentwise conversion.</summary>
  170. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  171. public uint4(double4 v)
  172. {
  173. this.x = (uint)v.x;
  174. this.y = (uint)v.y;
  175. this.z = (uint)v.z;
  176. this.w = (uint)v.w;
  177. }
  178. /// <summary>Implicitly converts a single uint value to a uint4 vector by assigning it to every component.</summary>
  179. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  180. public static implicit operator uint4(uint v) { return new uint4(v); }
  181. /// <summary>Explicitly converts a single bool value to a uint4 vector by converting it to uint and assigning it to every component.</summary>
  182. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  183. public static explicit operator uint4(bool v) { return new uint4(v); }
  184. /// <summary>Explicitly converts a bool4 vector to a uint4 vector by componentwise conversion.</summary>
  185. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  186. public static explicit operator uint4(bool4 v) { return new uint4(v); }
  187. /// <summary>Explicitly converts a single int value to a uint4 vector by converting it to uint and assigning it to every component.</summary>
  188. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  189. public static explicit operator uint4(int v) { return new uint4(v); }
  190. /// <summary>Explicitly converts a int4 vector to a uint4 vector by componentwise conversion.</summary>
  191. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  192. public static explicit operator uint4(int4 v) { return new uint4(v); }
  193. /// <summary>Explicitly converts a single float value to a uint4 vector by converting it to uint and assigning it to every component.</summary>
  194. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  195. public static explicit operator uint4(float v) { return new uint4(v); }
  196. /// <summary>Explicitly converts a float4 vector to a uint4 vector by componentwise conversion.</summary>
  197. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  198. public static explicit operator uint4(float4 v) { return new uint4(v); }
  199. /// <summary>Explicitly converts a single double value to a uint4 vector by converting it to uint and assigning it to every component.</summary>
  200. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  201. public static explicit operator uint4(double v) { return new uint4(v); }
  202. /// <summary>Explicitly converts a double4 vector to a uint4 vector by componentwise conversion.</summary>
  203. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  204. public static explicit operator uint4(double4 v) { return new uint4(v); }
  205. /// <summary>Returns the result of a componentwise multiplication operation on two uint4 vectors.</summary>
  206. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  207. public static uint4 operator * (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x * rhs.x, lhs.y * rhs.y, lhs.z * rhs.z, lhs.w * rhs.w); }
  208. /// <summary>Returns the result of a componentwise multiplication operation on a uint4 vector and a uint value.</summary>
  209. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  210. public static uint4 operator * (uint4 lhs, uint rhs) { return new uint4 (lhs.x * rhs, lhs.y * rhs, lhs.z * rhs, lhs.w * rhs); }
  211. /// <summary>Returns the result of a componentwise multiplication operation on a uint value and a uint4 vector.</summary>
  212. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  213. public static uint4 operator * (uint lhs, uint4 rhs) { return new uint4 (lhs * rhs.x, lhs * rhs.y, lhs * rhs.z, lhs * rhs.w); }
  214. /// <summary>Returns the result of a componentwise addition operation on two uint4 vectors.</summary>
  215. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  216. public static uint4 operator + (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x + rhs.x, lhs.y + rhs.y, lhs.z + rhs.z, lhs.w + rhs.w); }
  217. /// <summary>Returns the result of a componentwise addition operation on a uint4 vector and a uint value.</summary>
  218. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  219. public static uint4 operator + (uint4 lhs, uint rhs) { return new uint4 (lhs.x + rhs, lhs.y + rhs, lhs.z + rhs, lhs.w + rhs); }
  220. /// <summary>Returns the result of a componentwise addition operation on a uint value and a uint4 vector.</summary>
  221. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  222. public static uint4 operator + (uint lhs, uint4 rhs) { return new uint4 (lhs + rhs.x, lhs + rhs.y, lhs + rhs.z, lhs + rhs.w); }
  223. /// <summary>Returns the result of a componentwise subtraction operation on two uint4 vectors.</summary>
  224. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  225. public static uint4 operator - (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x - rhs.x, lhs.y - rhs.y, lhs.z - rhs.z, lhs.w - rhs.w); }
  226. /// <summary>Returns the result of a componentwise subtraction operation on a uint4 vector and a uint value.</summary>
  227. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  228. public static uint4 operator - (uint4 lhs, uint rhs) { return new uint4 (lhs.x - rhs, lhs.y - rhs, lhs.z - rhs, lhs.w - rhs); }
  229. /// <summary>Returns the result of a componentwise subtraction operation on a uint value and a uint4 vector.</summary>
  230. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  231. public static uint4 operator - (uint lhs, uint4 rhs) { return new uint4 (lhs - rhs.x, lhs - rhs.y, lhs - rhs.z, lhs - rhs.w); }
  232. /// <summary>Returns the result of a componentwise division operation on two uint4 vectors.</summary>
  233. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  234. public static uint4 operator / (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x / rhs.x, lhs.y / rhs.y, lhs.z / rhs.z, lhs.w / rhs.w); }
  235. /// <summary>Returns the result of a componentwise division operation on a uint4 vector and a uint value.</summary>
  236. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  237. public static uint4 operator / (uint4 lhs, uint rhs) { return new uint4 (lhs.x / rhs, lhs.y / rhs, lhs.z / rhs, lhs.w / rhs); }
  238. /// <summary>Returns the result of a componentwise division operation on a uint value and a uint4 vector.</summary>
  239. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  240. public static uint4 operator / (uint lhs, uint4 rhs) { return new uint4 (lhs / rhs.x, lhs / rhs.y, lhs / rhs.z, lhs / rhs.w); }
  241. /// <summary>Returns the result of a componentwise modulus operation on two uint4 vectors.</summary>
  242. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  243. public static uint4 operator % (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x % rhs.x, lhs.y % rhs.y, lhs.z % rhs.z, lhs.w % rhs.w); }
  244. /// <summary>Returns the result of a componentwise modulus operation on a uint4 vector and a uint value.</summary>
  245. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  246. public static uint4 operator % (uint4 lhs, uint rhs) { return new uint4 (lhs.x % rhs, lhs.y % rhs, lhs.z % rhs, lhs.w % rhs); }
  247. /// <summary>Returns the result of a componentwise modulus operation on a uint value and a uint4 vector.</summary>
  248. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  249. public static uint4 operator % (uint lhs, uint4 rhs) { return new uint4 (lhs % rhs.x, lhs % rhs.y, lhs % rhs.z, lhs % rhs.w); }
  250. /// <summary>Returns the result of a componentwise increment operation on a uint4 vector.</summary>
  251. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  252. public static uint4 operator ++ (uint4 val) { return new uint4 (++val.x, ++val.y, ++val.z, ++val.w); }
  253. /// <summary>Returns the result of a componentwise decrement operation on a uint4 vector.</summary>
  254. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  255. public static uint4 operator -- (uint4 val) { return new uint4 (--val.x, --val.y, --val.z, --val.w); }
  256. /// <summary>Returns the result of a componentwise less than operation on two uint4 vectors.</summary>
  257. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  258. public static bool4 operator < (uint4 lhs, uint4 rhs) { return new bool4 (lhs.x < rhs.x, lhs.y < rhs.y, lhs.z < rhs.z, lhs.w < rhs.w); }
  259. /// <summary>Returns the result of a componentwise less than operation on a uint4 vector and a uint value.</summary>
  260. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  261. public static bool4 operator < (uint4 lhs, uint rhs) { return new bool4 (lhs.x < rhs, lhs.y < rhs, lhs.z < rhs, lhs.w < rhs); }
  262. /// <summary>Returns the result of a componentwise less than operation on a uint value and a uint4 vector.</summary>
  263. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  264. public static bool4 operator < (uint lhs, uint4 rhs) { return new bool4 (lhs < rhs.x, lhs < rhs.y, lhs < rhs.z, lhs < rhs.w); }
  265. /// <summary>Returns the result of a componentwise less or equal operation on two uint4 vectors.</summary>
  266. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  267. public static bool4 operator <= (uint4 lhs, uint4 rhs) { return new bool4 (lhs.x <= rhs.x, lhs.y <= rhs.y, lhs.z <= rhs.z, lhs.w <= rhs.w); }
  268. /// <summary>Returns the result of a componentwise less or equal operation on a uint4 vector and a uint value.</summary>
  269. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  270. public static bool4 operator <= (uint4 lhs, uint rhs) { return new bool4 (lhs.x <= rhs, lhs.y <= rhs, lhs.z <= rhs, lhs.w <= rhs); }
  271. /// <summary>Returns the result of a componentwise less or equal operation on a uint value and a uint4 vector.</summary>
  272. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  273. public static bool4 operator <= (uint lhs, uint4 rhs) { return new bool4 (lhs <= rhs.x, lhs <= rhs.y, lhs <= rhs.z, lhs <= rhs.w); }
  274. /// <summary>Returns the result of a componentwise greater than operation on two uint4 vectors.</summary>
  275. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  276. public static bool4 operator > (uint4 lhs, uint4 rhs) { return new bool4 (lhs.x > rhs.x, lhs.y > rhs.y, lhs.z > rhs.z, lhs.w > rhs.w); }
  277. /// <summary>Returns the result of a componentwise greater than operation on a uint4 vector and a uint value.</summary>
  278. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  279. public static bool4 operator > (uint4 lhs, uint rhs) { return new bool4 (lhs.x > rhs, lhs.y > rhs, lhs.z > rhs, lhs.w > rhs); }
  280. /// <summary>Returns the result of a componentwise greater than operation on a uint value and a uint4 vector.</summary>
  281. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  282. public static bool4 operator > (uint lhs, uint4 rhs) { return new bool4 (lhs > rhs.x, lhs > rhs.y, lhs > rhs.z, lhs > rhs.w); }
  283. /// <summary>Returns the result of a componentwise greater or equal operation on two uint4 vectors.</summary>
  284. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  285. public static bool4 operator >= (uint4 lhs, uint4 rhs) { return new bool4 (lhs.x >= rhs.x, lhs.y >= rhs.y, lhs.z >= rhs.z, lhs.w >= rhs.w); }
  286. /// <summary>Returns the result of a componentwise greater or equal operation on a uint4 vector and a uint value.</summary>
  287. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  288. public static bool4 operator >= (uint4 lhs, uint rhs) { return new bool4 (lhs.x >= rhs, lhs.y >= rhs, lhs.z >= rhs, lhs.w >= rhs); }
  289. /// <summary>Returns the result of a componentwise greater or equal operation on a uint value and a uint4 vector.</summary>
  290. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  291. public static bool4 operator >= (uint lhs, uint4 rhs) { return new bool4 (lhs >= rhs.x, lhs >= rhs.y, lhs >= rhs.z, lhs >= rhs.w); }
  292. /// <summary>Returns the result of a componentwise unary minus operation on a uint4 vector.</summary>
  293. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  294. public static uint4 operator - (uint4 val) { return new uint4 ((uint)-val.x, (uint)-val.y, (uint)-val.z, (uint)-val.w); }
  295. /// <summary>Returns the result of a componentwise unary plus operation on a uint4 vector.</summary>
  296. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  297. public static uint4 operator + (uint4 val) { return new uint4 (+val.x, +val.y, +val.z, +val.w); }
  298. /// <summary>Returns the result of a componentwise left shift operation on a uint4 vector by a number of bits specified by a single int.</summary>
  299. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  300. public static uint4 operator << (uint4 x, int n) { return new uint4 (x.x << n, x.y << n, x.z << n, x.w << n); }
  301. /// <summary>Returns the result of a componentwise right shift operation on a uint4 vector by a number of bits specified by a single int.</summary>
  302. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  303. public static uint4 operator >> (uint4 x, int n) { return new uint4 (x.x >> n, x.y >> n, x.z >> n, x.w >> n); }
  304. /// <summary>Returns the result of a componentwise equality operation on two uint4 vectors.</summary>
  305. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  306. public static bool4 operator == (uint4 lhs, uint4 rhs) { return new bool4 (lhs.x == rhs.x, lhs.y == rhs.y, lhs.z == rhs.z, lhs.w == rhs.w); }
  307. /// <summary>Returns the result of a componentwise equality operation on a uint4 vector and a uint value.</summary>
  308. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  309. public static bool4 operator == (uint4 lhs, uint rhs) { return new bool4 (lhs.x == rhs, lhs.y == rhs, lhs.z == rhs, lhs.w == rhs); }
  310. /// <summary>Returns the result of a componentwise equality operation on a uint value and a uint4 vector.</summary>
  311. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  312. public static bool4 operator == (uint lhs, uint4 rhs) { return new bool4 (lhs == rhs.x, lhs == rhs.y, lhs == rhs.z, lhs == rhs.w); }
  313. /// <summary>Returns the result of a componentwise not equal operation on two uint4 vectors.</summary>
  314. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  315. public static bool4 operator != (uint4 lhs, uint4 rhs) { return new bool4 (lhs.x != rhs.x, lhs.y != rhs.y, lhs.z != rhs.z, lhs.w != rhs.w); }
  316. /// <summary>Returns the result of a componentwise not equal operation on a uint4 vector and a uint value.</summary>
  317. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  318. public static bool4 operator != (uint4 lhs, uint rhs) { return new bool4 (lhs.x != rhs, lhs.y != rhs, lhs.z != rhs, lhs.w != rhs); }
  319. /// <summary>Returns the result of a componentwise not equal operation on a uint value and a uint4 vector.</summary>
  320. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  321. public static bool4 operator != (uint lhs, uint4 rhs) { return new bool4 (lhs != rhs.x, lhs != rhs.y, lhs != rhs.z, lhs != rhs.w); }
  322. /// <summary>Returns the result of a componentwise bitwise not operation on a uint4 vector.</summary>
  323. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  324. public static uint4 operator ~ (uint4 val) { return new uint4 (~val.x, ~val.y, ~val.z, ~val.w); }
  325. /// <summary>Returns the result of a componentwise bitwise and operation on two uint4 vectors.</summary>
  326. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  327. public static uint4 operator & (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x & rhs.x, lhs.y & rhs.y, lhs.z & rhs.z, lhs.w & rhs.w); }
  328. /// <summary>Returns the result of a componentwise bitwise and operation on a uint4 vector and a uint value.</summary>
  329. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  330. public static uint4 operator & (uint4 lhs, uint rhs) { return new uint4 (lhs.x & rhs, lhs.y & rhs, lhs.z & rhs, lhs.w & rhs); }
  331. /// <summary>Returns the result of a componentwise bitwise and operation on a uint value and a uint4 vector.</summary>
  332. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  333. public static uint4 operator & (uint lhs, uint4 rhs) { return new uint4 (lhs & rhs.x, lhs & rhs.y, lhs & rhs.z, lhs & rhs.w); }
  334. /// <summary>Returns the result of a componentwise bitwise or operation on two uint4 vectors.</summary>
  335. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  336. public static uint4 operator | (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x | rhs.x, lhs.y | rhs.y, lhs.z | rhs.z, lhs.w | rhs.w); }
  337. /// <summary>Returns the result of a componentwise bitwise or operation on a uint4 vector and a uint value.</summary>
  338. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  339. public static uint4 operator | (uint4 lhs, uint rhs) { return new uint4 (lhs.x | rhs, lhs.y | rhs, lhs.z | rhs, lhs.w | rhs); }
  340. /// <summary>Returns the result of a componentwise bitwise or operation on a uint value and a uint4 vector.</summary>
  341. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  342. public static uint4 operator | (uint lhs, uint4 rhs) { return new uint4 (lhs | rhs.x, lhs | rhs.y, lhs | rhs.z, lhs | rhs.w); }
  343. /// <summary>Returns the result of a componentwise bitwise exclusive or operation on two uint4 vectors.</summary>
  344. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  345. public static uint4 operator ^ (uint4 lhs, uint4 rhs) { return new uint4 (lhs.x ^ rhs.x, lhs.y ^ rhs.y, lhs.z ^ rhs.z, lhs.w ^ rhs.w); }
  346. /// <summary>Returns the result of a componentwise bitwise exclusive or operation on a uint4 vector and a uint value.</summary>
  347. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  348. public static uint4 operator ^ (uint4 lhs, uint rhs) { return new uint4 (lhs.x ^ rhs, lhs.y ^ rhs, lhs.z ^ rhs, lhs.w ^ rhs); }
  349. /// <summary>Returns the result of a componentwise bitwise exclusive or operation on a uint value and a uint4 vector.</summary>
  350. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  351. public static uint4 operator ^ (uint lhs, uint4 rhs) { return new uint4 (lhs ^ rhs.x, lhs ^ rhs.y, lhs ^ rhs.z, lhs ^ rhs.w); }
  352. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  353. public uint4 xxxx
  354. {
  355. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  356. get { return new uint4(x, x, x, x); }
  357. }
  358. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  359. public uint4 xxxy
  360. {
  361. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  362. get { return new uint4(x, x, x, y); }
  363. }
  364. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  365. public uint4 xxxz
  366. {
  367. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  368. get { return new uint4(x, x, x, z); }
  369. }
  370. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  371. public uint4 xxxw
  372. {
  373. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  374. get { return new uint4(x, x, x, w); }
  375. }
  376. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  377. public uint4 xxyx
  378. {
  379. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  380. get { return new uint4(x, x, y, x); }
  381. }
  382. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  383. public uint4 xxyy
  384. {
  385. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  386. get { return new uint4(x, x, y, y); }
  387. }
  388. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  389. public uint4 xxyz
  390. {
  391. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  392. get { return new uint4(x, x, y, z); }
  393. }
  394. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  395. public uint4 xxyw
  396. {
  397. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  398. get { return new uint4(x, x, y, w); }
  399. }
  400. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  401. public uint4 xxzx
  402. {
  403. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  404. get { return new uint4(x, x, z, x); }
  405. }
  406. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  407. public uint4 xxzy
  408. {
  409. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  410. get { return new uint4(x, x, z, y); }
  411. }
  412. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  413. public uint4 xxzz
  414. {
  415. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  416. get { return new uint4(x, x, z, z); }
  417. }
  418. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  419. public uint4 xxzw
  420. {
  421. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  422. get { return new uint4(x, x, z, w); }
  423. }
  424. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  425. public uint4 xxwx
  426. {
  427. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  428. get { return new uint4(x, x, w, x); }
  429. }
  430. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  431. public uint4 xxwy
  432. {
  433. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  434. get { return new uint4(x, x, w, y); }
  435. }
  436. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  437. public uint4 xxwz
  438. {
  439. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  440. get { return new uint4(x, x, w, z); }
  441. }
  442. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  443. public uint4 xxww
  444. {
  445. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  446. get { return new uint4(x, x, w, w); }
  447. }
  448. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  449. public uint4 xyxx
  450. {
  451. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  452. get { return new uint4(x, y, x, x); }
  453. }
  454. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  455. public uint4 xyxy
  456. {
  457. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  458. get { return new uint4(x, y, x, y); }
  459. }
  460. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  461. public uint4 xyxz
  462. {
  463. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  464. get { return new uint4(x, y, x, z); }
  465. }
  466. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  467. public uint4 xyxw
  468. {
  469. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  470. get { return new uint4(x, y, x, w); }
  471. }
  472. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  473. public uint4 xyyx
  474. {
  475. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  476. get { return new uint4(x, y, y, x); }
  477. }
  478. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  479. public uint4 xyyy
  480. {
  481. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  482. get { return new uint4(x, y, y, y); }
  483. }
  484. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  485. public uint4 xyyz
  486. {
  487. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  488. get { return new uint4(x, y, y, z); }
  489. }
  490. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  491. public uint4 xyyw
  492. {
  493. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  494. get { return new uint4(x, y, y, w); }
  495. }
  496. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  497. public uint4 xyzx
  498. {
  499. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  500. get { return new uint4(x, y, z, x); }
  501. }
  502. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  503. public uint4 xyzy
  504. {
  505. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  506. get { return new uint4(x, y, z, y); }
  507. }
  508. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  509. public uint4 xyzz
  510. {
  511. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  512. get { return new uint4(x, y, z, z); }
  513. }
  514. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  515. public uint4 xyzw
  516. {
  517. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  518. get { return new uint4(x, y, z, w); }
  519. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  520. set { x = value.x; y = value.y; z = value.z; w = value.w; }
  521. }
  522. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  523. public uint4 xywx
  524. {
  525. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  526. get { return new uint4(x, y, w, x); }
  527. }
  528. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  529. public uint4 xywy
  530. {
  531. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  532. get { return new uint4(x, y, w, y); }
  533. }
  534. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  535. public uint4 xywz
  536. {
  537. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  538. get { return new uint4(x, y, w, z); }
  539. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  540. set { x = value.x; y = value.y; w = value.z; z = value.w; }
  541. }
  542. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  543. public uint4 xyww
  544. {
  545. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  546. get { return new uint4(x, y, w, w); }
  547. }
  548. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  549. public uint4 xzxx
  550. {
  551. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  552. get { return new uint4(x, z, x, x); }
  553. }
  554. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  555. public uint4 xzxy
  556. {
  557. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  558. get { return new uint4(x, z, x, y); }
  559. }
  560. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  561. public uint4 xzxz
  562. {
  563. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  564. get { return new uint4(x, z, x, z); }
  565. }
  566. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  567. public uint4 xzxw
  568. {
  569. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  570. get { return new uint4(x, z, x, w); }
  571. }
  572. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  573. public uint4 xzyx
  574. {
  575. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  576. get { return new uint4(x, z, y, x); }
  577. }
  578. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  579. public uint4 xzyy
  580. {
  581. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  582. get { return new uint4(x, z, y, y); }
  583. }
  584. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  585. public uint4 xzyz
  586. {
  587. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  588. get { return new uint4(x, z, y, z); }
  589. }
  590. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  591. public uint4 xzyw
  592. {
  593. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  594. get { return new uint4(x, z, y, w); }
  595. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  596. set { x = value.x; z = value.y; y = value.z; w = value.w; }
  597. }
  598. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  599. public uint4 xzzx
  600. {
  601. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  602. get { return new uint4(x, z, z, x); }
  603. }
  604. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  605. public uint4 xzzy
  606. {
  607. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  608. get { return new uint4(x, z, z, y); }
  609. }
  610. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  611. public uint4 xzzz
  612. {
  613. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  614. get { return new uint4(x, z, z, z); }
  615. }
  616. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  617. public uint4 xzzw
  618. {
  619. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  620. get { return new uint4(x, z, z, w); }
  621. }
  622. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  623. public uint4 xzwx
  624. {
  625. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  626. get { return new uint4(x, z, w, x); }
  627. }
  628. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  629. public uint4 xzwy
  630. {
  631. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  632. get { return new uint4(x, z, w, y); }
  633. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  634. set { x = value.x; z = value.y; w = value.z; y = value.w; }
  635. }
  636. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  637. public uint4 xzwz
  638. {
  639. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  640. get { return new uint4(x, z, w, z); }
  641. }
  642. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  643. public uint4 xzww
  644. {
  645. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  646. get { return new uint4(x, z, w, w); }
  647. }
  648. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  649. public uint4 xwxx
  650. {
  651. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  652. get { return new uint4(x, w, x, x); }
  653. }
  654. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  655. public uint4 xwxy
  656. {
  657. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  658. get { return new uint4(x, w, x, y); }
  659. }
  660. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  661. public uint4 xwxz
  662. {
  663. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  664. get { return new uint4(x, w, x, z); }
  665. }
  666. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  667. public uint4 xwxw
  668. {
  669. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  670. get { return new uint4(x, w, x, w); }
  671. }
  672. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  673. public uint4 xwyx
  674. {
  675. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  676. get { return new uint4(x, w, y, x); }
  677. }
  678. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  679. public uint4 xwyy
  680. {
  681. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  682. get { return new uint4(x, w, y, y); }
  683. }
  684. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  685. public uint4 xwyz
  686. {
  687. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  688. get { return new uint4(x, w, y, z); }
  689. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  690. set { x = value.x; w = value.y; y = value.z; z = value.w; }
  691. }
  692. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  693. public uint4 xwyw
  694. {
  695. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  696. get { return new uint4(x, w, y, w); }
  697. }
  698. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  699. public uint4 xwzx
  700. {
  701. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  702. get { return new uint4(x, w, z, x); }
  703. }
  704. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  705. public uint4 xwzy
  706. {
  707. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  708. get { return new uint4(x, w, z, y); }
  709. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  710. set { x = value.x; w = value.y; z = value.z; y = value.w; }
  711. }
  712. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  713. public uint4 xwzz
  714. {
  715. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  716. get { return new uint4(x, w, z, z); }
  717. }
  718. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  719. public uint4 xwzw
  720. {
  721. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  722. get { return new uint4(x, w, z, w); }
  723. }
  724. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  725. public uint4 xwwx
  726. {
  727. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  728. get { return new uint4(x, w, w, x); }
  729. }
  730. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  731. public uint4 xwwy
  732. {
  733. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  734. get { return new uint4(x, w, w, y); }
  735. }
  736. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  737. public uint4 xwwz
  738. {
  739. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  740. get { return new uint4(x, w, w, z); }
  741. }
  742. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  743. public uint4 xwww
  744. {
  745. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  746. get { return new uint4(x, w, w, w); }
  747. }
  748. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  749. public uint4 yxxx
  750. {
  751. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  752. get { return new uint4(y, x, x, x); }
  753. }
  754. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  755. public uint4 yxxy
  756. {
  757. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  758. get { return new uint4(y, x, x, y); }
  759. }
  760. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  761. public uint4 yxxz
  762. {
  763. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  764. get { return new uint4(y, x, x, z); }
  765. }
  766. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  767. public uint4 yxxw
  768. {
  769. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  770. get { return new uint4(y, x, x, w); }
  771. }
  772. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  773. public uint4 yxyx
  774. {
  775. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  776. get { return new uint4(y, x, y, x); }
  777. }
  778. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  779. public uint4 yxyy
  780. {
  781. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  782. get { return new uint4(y, x, y, y); }
  783. }
  784. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  785. public uint4 yxyz
  786. {
  787. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  788. get { return new uint4(y, x, y, z); }
  789. }
  790. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  791. public uint4 yxyw
  792. {
  793. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  794. get { return new uint4(y, x, y, w); }
  795. }
  796. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  797. public uint4 yxzx
  798. {
  799. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  800. get { return new uint4(y, x, z, x); }
  801. }
  802. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  803. public uint4 yxzy
  804. {
  805. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  806. get { return new uint4(y, x, z, y); }
  807. }
  808. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  809. public uint4 yxzz
  810. {
  811. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  812. get { return new uint4(y, x, z, z); }
  813. }
  814. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  815. public uint4 yxzw
  816. {
  817. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  818. get { return new uint4(y, x, z, w); }
  819. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  820. set { y = value.x; x = value.y; z = value.z; w = value.w; }
  821. }
  822. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  823. public uint4 yxwx
  824. {
  825. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  826. get { return new uint4(y, x, w, x); }
  827. }
  828. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  829. public uint4 yxwy
  830. {
  831. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  832. get { return new uint4(y, x, w, y); }
  833. }
  834. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  835. public uint4 yxwz
  836. {
  837. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  838. get { return new uint4(y, x, w, z); }
  839. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  840. set { y = value.x; x = value.y; w = value.z; z = value.w; }
  841. }
  842. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  843. public uint4 yxww
  844. {
  845. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  846. get { return new uint4(y, x, w, w); }
  847. }
  848. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  849. public uint4 yyxx
  850. {
  851. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  852. get { return new uint4(y, y, x, x); }
  853. }
  854. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  855. public uint4 yyxy
  856. {
  857. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  858. get { return new uint4(y, y, x, y); }
  859. }
  860. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  861. public uint4 yyxz
  862. {
  863. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  864. get { return new uint4(y, y, x, z); }
  865. }
  866. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  867. public uint4 yyxw
  868. {
  869. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  870. get { return new uint4(y, y, x, w); }
  871. }
  872. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  873. public uint4 yyyx
  874. {
  875. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  876. get { return new uint4(y, y, y, x); }
  877. }
  878. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  879. public uint4 yyyy
  880. {
  881. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  882. get { return new uint4(y, y, y, y); }
  883. }
  884. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  885. public uint4 yyyz
  886. {
  887. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  888. get { return new uint4(y, y, y, z); }
  889. }
  890. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  891. public uint4 yyyw
  892. {
  893. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  894. get { return new uint4(y, y, y, w); }
  895. }
  896. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  897. public uint4 yyzx
  898. {
  899. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  900. get { return new uint4(y, y, z, x); }
  901. }
  902. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  903. public uint4 yyzy
  904. {
  905. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  906. get { return new uint4(y, y, z, y); }
  907. }
  908. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  909. public uint4 yyzz
  910. {
  911. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  912. get { return new uint4(y, y, z, z); }
  913. }
  914. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  915. public uint4 yyzw
  916. {
  917. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  918. get { return new uint4(y, y, z, w); }
  919. }
  920. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  921. public uint4 yywx
  922. {
  923. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  924. get { return new uint4(y, y, w, x); }
  925. }
  926. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  927. public uint4 yywy
  928. {
  929. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  930. get { return new uint4(y, y, w, y); }
  931. }
  932. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  933. public uint4 yywz
  934. {
  935. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  936. get { return new uint4(y, y, w, z); }
  937. }
  938. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  939. public uint4 yyww
  940. {
  941. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  942. get { return new uint4(y, y, w, w); }
  943. }
  944. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  945. public uint4 yzxx
  946. {
  947. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  948. get { return new uint4(y, z, x, x); }
  949. }
  950. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  951. public uint4 yzxy
  952. {
  953. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  954. get { return new uint4(y, z, x, y); }
  955. }
  956. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  957. public uint4 yzxz
  958. {
  959. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  960. get { return new uint4(y, z, x, z); }
  961. }
  962. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  963. public uint4 yzxw
  964. {
  965. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  966. get { return new uint4(y, z, x, w); }
  967. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  968. set { y = value.x; z = value.y; x = value.z; w = value.w; }
  969. }
  970. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  971. public uint4 yzyx
  972. {
  973. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  974. get { return new uint4(y, z, y, x); }
  975. }
  976. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  977. public uint4 yzyy
  978. {
  979. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  980. get { return new uint4(y, z, y, y); }
  981. }
  982. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  983. public uint4 yzyz
  984. {
  985. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  986. get { return new uint4(y, z, y, z); }
  987. }
  988. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  989. public uint4 yzyw
  990. {
  991. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  992. get { return new uint4(y, z, y, w); }
  993. }
  994. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  995. public uint4 yzzx
  996. {
  997. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  998. get { return new uint4(y, z, z, x); }
  999. }
  1000. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1001. public uint4 yzzy
  1002. {
  1003. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1004. get { return new uint4(y, z, z, y); }
  1005. }
  1006. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1007. public uint4 yzzz
  1008. {
  1009. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1010. get { return new uint4(y, z, z, z); }
  1011. }
  1012. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1013. public uint4 yzzw
  1014. {
  1015. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1016. get { return new uint4(y, z, z, w); }
  1017. }
  1018. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1019. public uint4 yzwx
  1020. {
  1021. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1022. get { return new uint4(y, z, w, x); }
  1023. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1024. set { y = value.x; z = value.y; w = value.z; x = value.w; }
  1025. }
  1026. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1027. public uint4 yzwy
  1028. {
  1029. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1030. get { return new uint4(y, z, w, y); }
  1031. }
  1032. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1033. public uint4 yzwz
  1034. {
  1035. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1036. get { return new uint4(y, z, w, z); }
  1037. }
  1038. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1039. public uint4 yzww
  1040. {
  1041. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1042. get { return new uint4(y, z, w, w); }
  1043. }
  1044. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1045. public uint4 ywxx
  1046. {
  1047. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1048. get { return new uint4(y, w, x, x); }
  1049. }
  1050. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1051. public uint4 ywxy
  1052. {
  1053. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1054. get { return new uint4(y, w, x, y); }
  1055. }
  1056. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1057. public uint4 ywxz
  1058. {
  1059. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1060. get { return new uint4(y, w, x, z); }
  1061. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1062. set { y = value.x; w = value.y; x = value.z; z = value.w; }
  1063. }
  1064. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1065. public uint4 ywxw
  1066. {
  1067. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1068. get { return new uint4(y, w, x, w); }
  1069. }
  1070. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1071. public uint4 ywyx
  1072. {
  1073. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1074. get { return new uint4(y, w, y, x); }
  1075. }
  1076. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1077. public uint4 ywyy
  1078. {
  1079. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1080. get { return new uint4(y, w, y, y); }
  1081. }
  1082. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1083. public uint4 ywyz
  1084. {
  1085. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1086. get { return new uint4(y, w, y, z); }
  1087. }
  1088. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1089. public uint4 ywyw
  1090. {
  1091. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1092. get { return new uint4(y, w, y, w); }
  1093. }
  1094. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1095. public uint4 ywzx
  1096. {
  1097. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1098. get { return new uint4(y, w, z, x); }
  1099. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1100. set { y = value.x; w = value.y; z = value.z; x = value.w; }
  1101. }
  1102. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1103. public uint4 ywzy
  1104. {
  1105. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1106. get { return new uint4(y, w, z, y); }
  1107. }
  1108. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1109. public uint4 ywzz
  1110. {
  1111. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1112. get { return new uint4(y, w, z, z); }
  1113. }
  1114. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1115. public uint4 ywzw
  1116. {
  1117. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1118. get { return new uint4(y, w, z, w); }
  1119. }
  1120. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1121. public uint4 ywwx
  1122. {
  1123. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1124. get { return new uint4(y, w, w, x); }
  1125. }
  1126. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1127. public uint4 ywwy
  1128. {
  1129. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1130. get { return new uint4(y, w, w, y); }
  1131. }
  1132. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1133. public uint4 ywwz
  1134. {
  1135. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1136. get { return new uint4(y, w, w, z); }
  1137. }
  1138. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1139. public uint4 ywww
  1140. {
  1141. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1142. get { return new uint4(y, w, w, w); }
  1143. }
  1144. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1145. public uint4 zxxx
  1146. {
  1147. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1148. get { return new uint4(z, x, x, x); }
  1149. }
  1150. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1151. public uint4 zxxy
  1152. {
  1153. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1154. get { return new uint4(z, x, x, y); }
  1155. }
  1156. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1157. public uint4 zxxz
  1158. {
  1159. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1160. get { return new uint4(z, x, x, z); }
  1161. }
  1162. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1163. public uint4 zxxw
  1164. {
  1165. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1166. get { return new uint4(z, x, x, w); }
  1167. }
  1168. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1169. public uint4 zxyx
  1170. {
  1171. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1172. get { return new uint4(z, x, y, x); }
  1173. }
  1174. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1175. public uint4 zxyy
  1176. {
  1177. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1178. get { return new uint4(z, x, y, y); }
  1179. }
  1180. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1181. public uint4 zxyz
  1182. {
  1183. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1184. get { return new uint4(z, x, y, z); }
  1185. }
  1186. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1187. public uint4 zxyw
  1188. {
  1189. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1190. get { return new uint4(z, x, y, w); }
  1191. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1192. set { z = value.x; x = value.y; y = value.z; w = value.w; }
  1193. }
  1194. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1195. public uint4 zxzx
  1196. {
  1197. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1198. get { return new uint4(z, x, z, x); }
  1199. }
  1200. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1201. public uint4 zxzy
  1202. {
  1203. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1204. get { return new uint4(z, x, z, y); }
  1205. }
  1206. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1207. public uint4 zxzz
  1208. {
  1209. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1210. get { return new uint4(z, x, z, z); }
  1211. }
  1212. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1213. public uint4 zxzw
  1214. {
  1215. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1216. get { return new uint4(z, x, z, w); }
  1217. }
  1218. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1219. public uint4 zxwx
  1220. {
  1221. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1222. get { return new uint4(z, x, w, x); }
  1223. }
  1224. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1225. public uint4 zxwy
  1226. {
  1227. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1228. get { return new uint4(z, x, w, y); }
  1229. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1230. set { z = value.x; x = value.y; w = value.z; y = value.w; }
  1231. }
  1232. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1233. public uint4 zxwz
  1234. {
  1235. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1236. get { return new uint4(z, x, w, z); }
  1237. }
  1238. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1239. public uint4 zxww
  1240. {
  1241. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1242. get { return new uint4(z, x, w, w); }
  1243. }
  1244. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1245. public uint4 zyxx
  1246. {
  1247. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1248. get { return new uint4(z, y, x, x); }
  1249. }
  1250. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1251. public uint4 zyxy
  1252. {
  1253. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1254. get { return new uint4(z, y, x, y); }
  1255. }
  1256. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1257. public uint4 zyxz
  1258. {
  1259. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1260. get { return new uint4(z, y, x, z); }
  1261. }
  1262. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1263. public uint4 zyxw
  1264. {
  1265. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1266. get { return new uint4(z, y, x, w); }
  1267. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1268. set { z = value.x; y = value.y; x = value.z; w = value.w; }
  1269. }
  1270. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1271. public uint4 zyyx
  1272. {
  1273. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1274. get { return new uint4(z, y, y, x); }
  1275. }
  1276. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1277. public uint4 zyyy
  1278. {
  1279. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1280. get { return new uint4(z, y, y, y); }
  1281. }
  1282. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1283. public uint4 zyyz
  1284. {
  1285. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1286. get { return new uint4(z, y, y, z); }
  1287. }
  1288. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1289. public uint4 zyyw
  1290. {
  1291. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1292. get { return new uint4(z, y, y, w); }
  1293. }
  1294. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1295. public uint4 zyzx
  1296. {
  1297. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1298. get { return new uint4(z, y, z, x); }
  1299. }
  1300. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1301. public uint4 zyzy
  1302. {
  1303. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1304. get { return new uint4(z, y, z, y); }
  1305. }
  1306. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1307. public uint4 zyzz
  1308. {
  1309. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1310. get { return new uint4(z, y, z, z); }
  1311. }
  1312. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1313. public uint4 zyzw
  1314. {
  1315. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1316. get { return new uint4(z, y, z, w); }
  1317. }
  1318. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1319. public uint4 zywx
  1320. {
  1321. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1322. get { return new uint4(z, y, w, x); }
  1323. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1324. set { z = value.x; y = value.y; w = value.z; x = value.w; }
  1325. }
  1326. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1327. public uint4 zywy
  1328. {
  1329. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1330. get { return new uint4(z, y, w, y); }
  1331. }
  1332. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1333. public uint4 zywz
  1334. {
  1335. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1336. get { return new uint4(z, y, w, z); }
  1337. }
  1338. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1339. public uint4 zyww
  1340. {
  1341. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1342. get { return new uint4(z, y, w, w); }
  1343. }
  1344. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1345. public uint4 zzxx
  1346. {
  1347. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1348. get { return new uint4(z, z, x, x); }
  1349. }
  1350. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1351. public uint4 zzxy
  1352. {
  1353. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1354. get { return new uint4(z, z, x, y); }
  1355. }
  1356. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1357. public uint4 zzxz
  1358. {
  1359. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1360. get { return new uint4(z, z, x, z); }
  1361. }
  1362. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1363. public uint4 zzxw
  1364. {
  1365. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1366. get { return new uint4(z, z, x, w); }
  1367. }
  1368. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1369. public uint4 zzyx
  1370. {
  1371. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1372. get { return new uint4(z, z, y, x); }
  1373. }
  1374. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1375. public uint4 zzyy
  1376. {
  1377. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1378. get { return new uint4(z, z, y, y); }
  1379. }
  1380. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1381. public uint4 zzyz
  1382. {
  1383. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1384. get { return new uint4(z, z, y, z); }
  1385. }
  1386. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1387. public uint4 zzyw
  1388. {
  1389. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1390. get { return new uint4(z, z, y, w); }
  1391. }
  1392. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1393. public uint4 zzzx
  1394. {
  1395. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1396. get { return new uint4(z, z, z, x); }
  1397. }
  1398. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1399. public uint4 zzzy
  1400. {
  1401. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1402. get { return new uint4(z, z, z, y); }
  1403. }
  1404. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1405. public uint4 zzzz
  1406. {
  1407. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1408. get { return new uint4(z, z, z, z); }
  1409. }
  1410. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1411. public uint4 zzzw
  1412. {
  1413. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1414. get { return new uint4(z, z, z, w); }
  1415. }
  1416. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1417. public uint4 zzwx
  1418. {
  1419. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1420. get { return new uint4(z, z, w, x); }
  1421. }
  1422. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1423. public uint4 zzwy
  1424. {
  1425. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1426. get { return new uint4(z, z, w, y); }
  1427. }
  1428. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1429. public uint4 zzwz
  1430. {
  1431. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1432. get { return new uint4(z, z, w, z); }
  1433. }
  1434. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1435. public uint4 zzww
  1436. {
  1437. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1438. get { return new uint4(z, z, w, w); }
  1439. }
  1440. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1441. public uint4 zwxx
  1442. {
  1443. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1444. get { return new uint4(z, w, x, x); }
  1445. }
  1446. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1447. public uint4 zwxy
  1448. {
  1449. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1450. get { return new uint4(z, w, x, y); }
  1451. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1452. set { z = value.x; w = value.y; x = value.z; y = value.w; }
  1453. }
  1454. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1455. public uint4 zwxz
  1456. {
  1457. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1458. get { return new uint4(z, w, x, z); }
  1459. }
  1460. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1461. public uint4 zwxw
  1462. {
  1463. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1464. get { return new uint4(z, w, x, w); }
  1465. }
  1466. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1467. public uint4 zwyx
  1468. {
  1469. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1470. get { return new uint4(z, w, y, x); }
  1471. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1472. set { z = value.x; w = value.y; y = value.z; x = value.w; }
  1473. }
  1474. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1475. public uint4 zwyy
  1476. {
  1477. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1478. get { return new uint4(z, w, y, y); }
  1479. }
  1480. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1481. public uint4 zwyz
  1482. {
  1483. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1484. get { return new uint4(z, w, y, z); }
  1485. }
  1486. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1487. public uint4 zwyw
  1488. {
  1489. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1490. get { return new uint4(z, w, y, w); }
  1491. }
  1492. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1493. public uint4 zwzx
  1494. {
  1495. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1496. get { return new uint4(z, w, z, x); }
  1497. }
  1498. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1499. public uint4 zwzy
  1500. {
  1501. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1502. get { return new uint4(z, w, z, y); }
  1503. }
  1504. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1505. public uint4 zwzz
  1506. {
  1507. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1508. get { return new uint4(z, w, z, z); }
  1509. }
  1510. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1511. public uint4 zwzw
  1512. {
  1513. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1514. get { return new uint4(z, w, z, w); }
  1515. }
  1516. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1517. public uint4 zwwx
  1518. {
  1519. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1520. get { return new uint4(z, w, w, x); }
  1521. }
  1522. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1523. public uint4 zwwy
  1524. {
  1525. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1526. get { return new uint4(z, w, w, y); }
  1527. }
  1528. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1529. public uint4 zwwz
  1530. {
  1531. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1532. get { return new uint4(z, w, w, z); }
  1533. }
  1534. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1535. public uint4 zwww
  1536. {
  1537. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1538. get { return new uint4(z, w, w, w); }
  1539. }
  1540. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1541. public uint4 wxxx
  1542. {
  1543. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1544. get { return new uint4(w, x, x, x); }
  1545. }
  1546. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1547. public uint4 wxxy
  1548. {
  1549. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1550. get { return new uint4(w, x, x, y); }
  1551. }
  1552. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1553. public uint4 wxxz
  1554. {
  1555. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1556. get { return new uint4(w, x, x, z); }
  1557. }
  1558. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1559. public uint4 wxxw
  1560. {
  1561. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1562. get { return new uint4(w, x, x, w); }
  1563. }
  1564. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1565. public uint4 wxyx
  1566. {
  1567. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1568. get { return new uint4(w, x, y, x); }
  1569. }
  1570. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1571. public uint4 wxyy
  1572. {
  1573. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1574. get { return new uint4(w, x, y, y); }
  1575. }
  1576. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1577. public uint4 wxyz
  1578. {
  1579. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1580. get { return new uint4(w, x, y, z); }
  1581. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1582. set { w = value.x; x = value.y; y = value.z; z = value.w; }
  1583. }
  1584. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1585. public uint4 wxyw
  1586. {
  1587. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1588. get { return new uint4(w, x, y, w); }
  1589. }
  1590. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1591. public uint4 wxzx
  1592. {
  1593. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1594. get { return new uint4(w, x, z, x); }
  1595. }
  1596. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1597. public uint4 wxzy
  1598. {
  1599. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1600. get { return new uint4(w, x, z, y); }
  1601. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1602. set { w = value.x; x = value.y; z = value.z; y = value.w; }
  1603. }
  1604. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1605. public uint4 wxzz
  1606. {
  1607. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1608. get { return new uint4(w, x, z, z); }
  1609. }
  1610. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1611. public uint4 wxzw
  1612. {
  1613. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1614. get { return new uint4(w, x, z, w); }
  1615. }
  1616. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1617. public uint4 wxwx
  1618. {
  1619. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1620. get { return new uint4(w, x, w, x); }
  1621. }
  1622. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1623. public uint4 wxwy
  1624. {
  1625. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1626. get { return new uint4(w, x, w, y); }
  1627. }
  1628. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1629. public uint4 wxwz
  1630. {
  1631. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1632. get { return new uint4(w, x, w, z); }
  1633. }
  1634. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1635. public uint4 wxww
  1636. {
  1637. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1638. get { return new uint4(w, x, w, w); }
  1639. }
  1640. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1641. public uint4 wyxx
  1642. {
  1643. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1644. get { return new uint4(w, y, x, x); }
  1645. }
  1646. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1647. public uint4 wyxy
  1648. {
  1649. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1650. get { return new uint4(w, y, x, y); }
  1651. }
  1652. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1653. public uint4 wyxz
  1654. {
  1655. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1656. get { return new uint4(w, y, x, z); }
  1657. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1658. set { w = value.x; y = value.y; x = value.z; z = value.w; }
  1659. }
  1660. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1661. public uint4 wyxw
  1662. {
  1663. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1664. get { return new uint4(w, y, x, w); }
  1665. }
  1666. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1667. public uint4 wyyx
  1668. {
  1669. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1670. get { return new uint4(w, y, y, x); }
  1671. }
  1672. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1673. public uint4 wyyy
  1674. {
  1675. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1676. get { return new uint4(w, y, y, y); }
  1677. }
  1678. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1679. public uint4 wyyz
  1680. {
  1681. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1682. get { return new uint4(w, y, y, z); }
  1683. }
  1684. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1685. public uint4 wyyw
  1686. {
  1687. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1688. get { return new uint4(w, y, y, w); }
  1689. }
  1690. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1691. public uint4 wyzx
  1692. {
  1693. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1694. get { return new uint4(w, y, z, x); }
  1695. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1696. set { w = value.x; y = value.y; z = value.z; x = value.w; }
  1697. }
  1698. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1699. public uint4 wyzy
  1700. {
  1701. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1702. get { return new uint4(w, y, z, y); }
  1703. }
  1704. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1705. public uint4 wyzz
  1706. {
  1707. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1708. get { return new uint4(w, y, z, z); }
  1709. }
  1710. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1711. public uint4 wyzw
  1712. {
  1713. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1714. get { return new uint4(w, y, z, w); }
  1715. }
  1716. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1717. public uint4 wywx
  1718. {
  1719. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1720. get { return new uint4(w, y, w, x); }
  1721. }
  1722. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1723. public uint4 wywy
  1724. {
  1725. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1726. get { return new uint4(w, y, w, y); }
  1727. }
  1728. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1729. public uint4 wywz
  1730. {
  1731. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1732. get { return new uint4(w, y, w, z); }
  1733. }
  1734. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1735. public uint4 wyww
  1736. {
  1737. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1738. get { return new uint4(w, y, w, w); }
  1739. }
  1740. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1741. public uint4 wzxx
  1742. {
  1743. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1744. get { return new uint4(w, z, x, x); }
  1745. }
  1746. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1747. public uint4 wzxy
  1748. {
  1749. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1750. get { return new uint4(w, z, x, y); }
  1751. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1752. set { w = value.x; z = value.y; x = value.z; y = value.w; }
  1753. }
  1754. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1755. public uint4 wzxz
  1756. {
  1757. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1758. get { return new uint4(w, z, x, z); }
  1759. }
  1760. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1761. public uint4 wzxw
  1762. {
  1763. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1764. get { return new uint4(w, z, x, w); }
  1765. }
  1766. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1767. public uint4 wzyx
  1768. {
  1769. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1770. get { return new uint4(w, z, y, x); }
  1771. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1772. set { w = value.x; z = value.y; y = value.z; x = value.w; }
  1773. }
  1774. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1775. public uint4 wzyy
  1776. {
  1777. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1778. get { return new uint4(w, z, y, y); }
  1779. }
  1780. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1781. public uint4 wzyz
  1782. {
  1783. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1784. get { return new uint4(w, z, y, z); }
  1785. }
  1786. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1787. public uint4 wzyw
  1788. {
  1789. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1790. get { return new uint4(w, z, y, w); }
  1791. }
  1792. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1793. public uint4 wzzx
  1794. {
  1795. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1796. get { return new uint4(w, z, z, x); }
  1797. }
  1798. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1799. public uint4 wzzy
  1800. {
  1801. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1802. get { return new uint4(w, z, z, y); }
  1803. }
  1804. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1805. public uint4 wzzz
  1806. {
  1807. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1808. get { return new uint4(w, z, z, z); }
  1809. }
  1810. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1811. public uint4 wzzw
  1812. {
  1813. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1814. get { return new uint4(w, z, z, w); }
  1815. }
  1816. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1817. public uint4 wzwx
  1818. {
  1819. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1820. get { return new uint4(w, z, w, x); }
  1821. }
  1822. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1823. public uint4 wzwy
  1824. {
  1825. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1826. get { return new uint4(w, z, w, y); }
  1827. }
  1828. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1829. public uint4 wzwz
  1830. {
  1831. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1832. get { return new uint4(w, z, w, z); }
  1833. }
  1834. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1835. public uint4 wzww
  1836. {
  1837. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1838. get { return new uint4(w, z, w, w); }
  1839. }
  1840. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1841. public uint4 wwxx
  1842. {
  1843. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1844. get { return new uint4(w, w, x, x); }
  1845. }
  1846. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1847. public uint4 wwxy
  1848. {
  1849. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1850. get { return new uint4(w, w, x, y); }
  1851. }
  1852. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1853. public uint4 wwxz
  1854. {
  1855. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1856. get { return new uint4(w, w, x, z); }
  1857. }
  1858. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1859. public uint4 wwxw
  1860. {
  1861. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1862. get { return new uint4(w, w, x, w); }
  1863. }
  1864. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1865. public uint4 wwyx
  1866. {
  1867. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1868. get { return new uint4(w, w, y, x); }
  1869. }
  1870. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1871. public uint4 wwyy
  1872. {
  1873. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1874. get { return new uint4(w, w, y, y); }
  1875. }
  1876. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1877. public uint4 wwyz
  1878. {
  1879. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1880. get { return new uint4(w, w, y, z); }
  1881. }
  1882. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1883. public uint4 wwyw
  1884. {
  1885. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1886. get { return new uint4(w, w, y, w); }
  1887. }
  1888. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1889. public uint4 wwzx
  1890. {
  1891. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1892. get { return new uint4(w, w, z, x); }
  1893. }
  1894. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1895. public uint4 wwzy
  1896. {
  1897. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1898. get { return new uint4(w, w, z, y); }
  1899. }
  1900. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1901. public uint4 wwzz
  1902. {
  1903. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1904. get { return new uint4(w, w, z, z); }
  1905. }
  1906. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1907. public uint4 wwzw
  1908. {
  1909. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1910. get { return new uint4(w, w, z, w); }
  1911. }
  1912. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1913. public uint4 wwwx
  1914. {
  1915. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1916. get { return new uint4(w, w, w, x); }
  1917. }
  1918. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1919. public uint4 wwwy
  1920. {
  1921. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1922. get { return new uint4(w, w, w, y); }
  1923. }
  1924. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1925. public uint4 wwwz
  1926. {
  1927. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1928. get { return new uint4(w, w, w, z); }
  1929. }
  1930. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1931. public uint4 wwww
  1932. {
  1933. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1934. get { return new uint4(w, w, w, w); }
  1935. }
  1936. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1937. public uint3 xxx
  1938. {
  1939. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1940. get { return new uint3(x, x, x); }
  1941. }
  1942. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1943. public uint3 xxy
  1944. {
  1945. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1946. get { return new uint3(x, x, y); }
  1947. }
  1948. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1949. public uint3 xxz
  1950. {
  1951. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1952. get { return new uint3(x, x, z); }
  1953. }
  1954. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1955. public uint3 xxw
  1956. {
  1957. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1958. get { return new uint3(x, x, w); }
  1959. }
  1960. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1961. public uint3 xyx
  1962. {
  1963. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1964. get { return new uint3(x, y, x); }
  1965. }
  1966. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1967. public uint3 xyy
  1968. {
  1969. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1970. get { return new uint3(x, y, y); }
  1971. }
  1972. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1973. public uint3 xyz
  1974. {
  1975. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1976. get { return new uint3(x, y, z); }
  1977. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1978. set { x = value.x; y = value.y; z = value.z; }
  1979. }
  1980. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1981. public uint3 xyw
  1982. {
  1983. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1984. get { return new uint3(x, y, w); }
  1985. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1986. set { x = value.x; y = value.y; w = value.z; }
  1987. }
  1988. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1989. public uint3 xzx
  1990. {
  1991. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1992. get { return new uint3(x, z, x); }
  1993. }
  1994. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  1995. public uint3 xzy
  1996. {
  1997. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  1998. get { return new uint3(x, z, y); }
  1999. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2000. set { x = value.x; z = value.y; y = value.z; }
  2001. }
  2002. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2003. public uint3 xzz
  2004. {
  2005. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2006. get { return new uint3(x, z, z); }
  2007. }
  2008. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2009. public uint3 xzw
  2010. {
  2011. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2012. get { return new uint3(x, z, w); }
  2013. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2014. set { x = value.x; z = value.y; w = value.z; }
  2015. }
  2016. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2017. public uint3 xwx
  2018. {
  2019. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2020. get { return new uint3(x, w, x); }
  2021. }
  2022. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2023. public uint3 xwy
  2024. {
  2025. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2026. get { return new uint3(x, w, y); }
  2027. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2028. set { x = value.x; w = value.y; y = value.z; }
  2029. }
  2030. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2031. public uint3 xwz
  2032. {
  2033. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2034. get { return new uint3(x, w, z); }
  2035. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2036. set { x = value.x; w = value.y; z = value.z; }
  2037. }
  2038. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2039. public uint3 xww
  2040. {
  2041. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2042. get { return new uint3(x, w, w); }
  2043. }
  2044. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2045. public uint3 yxx
  2046. {
  2047. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2048. get { return new uint3(y, x, x); }
  2049. }
  2050. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2051. public uint3 yxy
  2052. {
  2053. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2054. get { return new uint3(y, x, y); }
  2055. }
  2056. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2057. public uint3 yxz
  2058. {
  2059. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2060. get { return new uint3(y, x, z); }
  2061. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2062. set { y = value.x; x = value.y; z = value.z; }
  2063. }
  2064. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2065. public uint3 yxw
  2066. {
  2067. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2068. get { return new uint3(y, x, w); }
  2069. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2070. set { y = value.x; x = value.y; w = value.z; }
  2071. }
  2072. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2073. public uint3 yyx
  2074. {
  2075. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2076. get { return new uint3(y, y, x); }
  2077. }
  2078. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2079. public uint3 yyy
  2080. {
  2081. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2082. get { return new uint3(y, y, y); }
  2083. }
  2084. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2085. public uint3 yyz
  2086. {
  2087. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2088. get { return new uint3(y, y, z); }
  2089. }
  2090. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2091. public uint3 yyw
  2092. {
  2093. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2094. get { return new uint3(y, y, w); }
  2095. }
  2096. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2097. public uint3 yzx
  2098. {
  2099. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2100. get { return new uint3(y, z, x); }
  2101. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2102. set { y = value.x; z = value.y; x = value.z; }
  2103. }
  2104. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2105. public uint3 yzy
  2106. {
  2107. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2108. get { return new uint3(y, z, y); }
  2109. }
  2110. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2111. public uint3 yzz
  2112. {
  2113. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2114. get { return new uint3(y, z, z); }
  2115. }
  2116. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2117. public uint3 yzw
  2118. {
  2119. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2120. get { return new uint3(y, z, w); }
  2121. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2122. set { y = value.x; z = value.y; w = value.z; }
  2123. }
  2124. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2125. public uint3 ywx
  2126. {
  2127. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2128. get { return new uint3(y, w, x); }
  2129. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2130. set { y = value.x; w = value.y; x = value.z; }
  2131. }
  2132. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2133. public uint3 ywy
  2134. {
  2135. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2136. get { return new uint3(y, w, y); }
  2137. }
  2138. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2139. public uint3 ywz
  2140. {
  2141. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2142. get { return new uint3(y, w, z); }
  2143. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2144. set { y = value.x; w = value.y; z = value.z; }
  2145. }
  2146. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2147. public uint3 yww
  2148. {
  2149. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2150. get { return new uint3(y, w, w); }
  2151. }
  2152. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2153. public uint3 zxx
  2154. {
  2155. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2156. get { return new uint3(z, x, x); }
  2157. }
  2158. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2159. public uint3 zxy
  2160. {
  2161. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2162. get { return new uint3(z, x, y); }
  2163. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2164. set { z = value.x; x = value.y; y = value.z; }
  2165. }
  2166. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2167. public uint3 zxz
  2168. {
  2169. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2170. get { return new uint3(z, x, z); }
  2171. }
  2172. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2173. public uint3 zxw
  2174. {
  2175. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2176. get { return new uint3(z, x, w); }
  2177. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2178. set { z = value.x; x = value.y; w = value.z; }
  2179. }
  2180. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2181. public uint3 zyx
  2182. {
  2183. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2184. get { return new uint3(z, y, x); }
  2185. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2186. set { z = value.x; y = value.y; x = value.z; }
  2187. }
  2188. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2189. public uint3 zyy
  2190. {
  2191. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2192. get { return new uint3(z, y, y); }
  2193. }
  2194. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2195. public uint3 zyz
  2196. {
  2197. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2198. get { return new uint3(z, y, z); }
  2199. }
  2200. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2201. public uint3 zyw
  2202. {
  2203. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2204. get { return new uint3(z, y, w); }
  2205. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2206. set { z = value.x; y = value.y; w = value.z; }
  2207. }
  2208. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2209. public uint3 zzx
  2210. {
  2211. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2212. get { return new uint3(z, z, x); }
  2213. }
  2214. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2215. public uint3 zzy
  2216. {
  2217. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2218. get { return new uint3(z, z, y); }
  2219. }
  2220. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2221. public uint3 zzz
  2222. {
  2223. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2224. get { return new uint3(z, z, z); }
  2225. }
  2226. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2227. public uint3 zzw
  2228. {
  2229. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2230. get { return new uint3(z, z, w); }
  2231. }
  2232. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2233. public uint3 zwx
  2234. {
  2235. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2236. get { return new uint3(z, w, x); }
  2237. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2238. set { z = value.x; w = value.y; x = value.z; }
  2239. }
  2240. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2241. public uint3 zwy
  2242. {
  2243. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2244. get { return new uint3(z, w, y); }
  2245. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2246. set { z = value.x; w = value.y; y = value.z; }
  2247. }
  2248. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2249. public uint3 zwz
  2250. {
  2251. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2252. get { return new uint3(z, w, z); }
  2253. }
  2254. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2255. public uint3 zww
  2256. {
  2257. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2258. get { return new uint3(z, w, w); }
  2259. }
  2260. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2261. public uint3 wxx
  2262. {
  2263. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2264. get { return new uint3(w, x, x); }
  2265. }
  2266. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2267. public uint3 wxy
  2268. {
  2269. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2270. get { return new uint3(w, x, y); }
  2271. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2272. set { w = value.x; x = value.y; y = value.z; }
  2273. }
  2274. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2275. public uint3 wxz
  2276. {
  2277. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2278. get { return new uint3(w, x, z); }
  2279. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2280. set { w = value.x; x = value.y; z = value.z; }
  2281. }
  2282. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2283. public uint3 wxw
  2284. {
  2285. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2286. get { return new uint3(w, x, w); }
  2287. }
  2288. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2289. public uint3 wyx
  2290. {
  2291. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2292. get { return new uint3(w, y, x); }
  2293. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2294. set { w = value.x; y = value.y; x = value.z; }
  2295. }
  2296. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2297. public uint3 wyy
  2298. {
  2299. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2300. get { return new uint3(w, y, y); }
  2301. }
  2302. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2303. public uint3 wyz
  2304. {
  2305. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2306. get { return new uint3(w, y, z); }
  2307. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2308. set { w = value.x; y = value.y; z = value.z; }
  2309. }
  2310. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2311. public uint3 wyw
  2312. {
  2313. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2314. get { return new uint3(w, y, w); }
  2315. }
  2316. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2317. public uint3 wzx
  2318. {
  2319. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2320. get { return new uint3(w, z, x); }
  2321. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2322. set { w = value.x; z = value.y; x = value.z; }
  2323. }
  2324. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2325. public uint3 wzy
  2326. {
  2327. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2328. get { return new uint3(w, z, y); }
  2329. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2330. set { w = value.x; z = value.y; y = value.z; }
  2331. }
  2332. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2333. public uint3 wzz
  2334. {
  2335. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2336. get { return new uint3(w, z, z); }
  2337. }
  2338. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2339. public uint3 wzw
  2340. {
  2341. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2342. get { return new uint3(w, z, w); }
  2343. }
  2344. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2345. public uint3 wwx
  2346. {
  2347. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2348. get { return new uint3(w, w, x); }
  2349. }
  2350. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2351. public uint3 wwy
  2352. {
  2353. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2354. get { return new uint3(w, w, y); }
  2355. }
  2356. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2357. public uint3 wwz
  2358. {
  2359. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2360. get { return new uint3(w, w, z); }
  2361. }
  2362. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2363. public uint3 www
  2364. {
  2365. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2366. get { return new uint3(w, w, w); }
  2367. }
  2368. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2369. public uint2 xx
  2370. {
  2371. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2372. get { return new uint2(x, x); }
  2373. }
  2374. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2375. public uint2 xy
  2376. {
  2377. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2378. get { return new uint2(x, y); }
  2379. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2380. set { x = value.x; y = value.y; }
  2381. }
  2382. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2383. public uint2 xz
  2384. {
  2385. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2386. get { return new uint2(x, z); }
  2387. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2388. set { x = value.x; z = value.y; }
  2389. }
  2390. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2391. public uint2 xw
  2392. {
  2393. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2394. get { return new uint2(x, w); }
  2395. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2396. set { x = value.x; w = value.y; }
  2397. }
  2398. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2399. public uint2 yx
  2400. {
  2401. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2402. get { return new uint2(y, x); }
  2403. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2404. set { y = value.x; x = value.y; }
  2405. }
  2406. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2407. public uint2 yy
  2408. {
  2409. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2410. get { return new uint2(y, y); }
  2411. }
  2412. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2413. public uint2 yz
  2414. {
  2415. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2416. get { return new uint2(y, z); }
  2417. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2418. set { y = value.x; z = value.y; }
  2419. }
  2420. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2421. public uint2 yw
  2422. {
  2423. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2424. get { return new uint2(y, w); }
  2425. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2426. set { y = value.x; w = value.y; }
  2427. }
  2428. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2429. public uint2 zx
  2430. {
  2431. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2432. get { return new uint2(z, x); }
  2433. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2434. set { z = value.x; x = value.y; }
  2435. }
  2436. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2437. public uint2 zy
  2438. {
  2439. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2440. get { return new uint2(z, y); }
  2441. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2442. set { z = value.x; y = value.y; }
  2443. }
  2444. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2445. public uint2 zz
  2446. {
  2447. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2448. get { return new uint2(z, z); }
  2449. }
  2450. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2451. public uint2 zw
  2452. {
  2453. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2454. get { return new uint2(z, w); }
  2455. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2456. set { z = value.x; w = value.y; }
  2457. }
  2458. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2459. public uint2 wx
  2460. {
  2461. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2462. get { return new uint2(w, x); }
  2463. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2464. set { w = value.x; x = value.y; }
  2465. }
  2466. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2467. public uint2 wy
  2468. {
  2469. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2470. get { return new uint2(w, y); }
  2471. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2472. set { w = value.x; y = value.y; }
  2473. }
  2474. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2475. public uint2 wz
  2476. {
  2477. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2478. get { return new uint2(w, z); }
  2479. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2480. set { w = value.x; z = value.y; }
  2481. }
  2482. [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
  2483. public uint2 ww
  2484. {
  2485. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2486. get { return new uint2(w, w); }
  2487. }
  2488. /// <summary>Returns the uint element at a specified index.</summary>
  2489. unsafe public uint this[int index]
  2490. {
  2491. get
  2492. {
  2493. #if ENABLE_UNITY_COLLECTIONS_CHECKS
  2494. if ((uint)index >= 4)
  2495. throw new System.ArgumentException("index must be between[0...3]");
  2496. #endif
  2497. fixed (uint4* array = &this) { return ((uint*)array)[index]; }
  2498. }
  2499. set
  2500. {
  2501. #if ENABLE_UNITY_COLLECTIONS_CHECKS
  2502. if ((uint)index >= 4)
  2503. throw new System.ArgumentException("index must be between[0...3]");
  2504. #endif
  2505. fixed (uint* array = &x) { array[index] = value; }
  2506. }
  2507. }
  2508. /// <summary>Returns true if the uint4 is equal to a given uint4, false otherwise.</summary>
  2509. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2510. public bool Equals(uint4 rhs) { return x == rhs.x && y == rhs.y && z == rhs.z && w == rhs.w; }
  2511. /// <summary>Returns true if the uint4 is equal to a given uint4, false otherwise.</summary>
  2512. public override bool Equals(object o) { return Equals((uint4)o); }
  2513. /// <summary>Returns a hash code for the uint4.</summary>
  2514. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2515. public override int GetHashCode() { return (int)math.hash(this); }
  2516. /// <summary>Returns a string representation of the uint4.</summary>
  2517. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2518. public override string ToString()
  2519. {
  2520. return string.Format("uint4({0}, {1}, {2}, {3})", x, y, z, w);
  2521. }
  2522. /// <summary>Returns a string representation of the uint4 using a specified format and culture-specific format information.</summary>
  2523. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2524. public string ToString(string format, IFormatProvider formatProvider)
  2525. {
  2526. return string.Format("uint4({0}, {1}, {2}, {3})", x.ToString(format, formatProvider), y.ToString(format, formatProvider), z.ToString(format, formatProvider), w.ToString(format, formatProvider));
  2527. }
  2528. internal sealed class DebuggerProxy
  2529. {
  2530. public uint x;
  2531. public uint y;
  2532. public uint z;
  2533. public uint w;
  2534. public DebuggerProxy(uint4 v)
  2535. {
  2536. x = v.x;
  2537. y = v.y;
  2538. z = v.z;
  2539. w = v.w;
  2540. }
  2541. }
  2542. }
  2543. public static partial class math
  2544. {
  2545. /// <summary>Returns a uint4 vector constructed from four uint values.</summary>
  2546. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2547. public static uint4 uint4(uint x, uint y, uint z, uint w) { return new uint4(x, y, z, w); }
  2548. /// <summary>Returns a uint4 vector constructed from two uint values and a uint2 vector.</summary>
  2549. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2550. public static uint4 uint4(uint x, uint y, uint2 zw) { return new uint4(x, y, zw); }
  2551. /// <summary>Returns a uint4 vector constructed from a uint value, a uint2 vector and a uint value.</summary>
  2552. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2553. public static uint4 uint4(uint x, uint2 yz, uint w) { return new uint4(x, yz, w); }
  2554. /// <summary>Returns a uint4 vector constructed from a uint value and a uint3 vector.</summary>
  2555. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2556. public static uint4 uint4(uint x, uint3 yzw) { return new uint4(x, yzw); }
  2557. /// <summary>Returns a uint4 vector constructed from a uint2 vector and two uint values.</summary>
  2558. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2559. public static uint4 uint4(uint2 xy, uint z, uint w) { return new uint4(xy, z, w); }
  2560. /// <summary>Returns a uint4 vector constructed from two uint2 vectors.</summary>
  2561. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2562. public static uint4 uint4(uint2 xy, uint2 zw) { return new uint4(xy, zw); }
  2563. /// <summary>Returns a uint4 vector constructed from a uint3 vector and a uint value.</summary>
  2564. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2565. public static uint4 uint4(uint3 xyz, uint w) { return new uint4(xyz, w); }
  2566. /// <summary>Returns a uint4 vector constructed from a uint4 vector.</summary>
  2567. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2568. public static uint4 uint4(uint4 xyzw) { return new uint4(xyzw); }
  2569. /// <summary>Returns a uint4 vector constructed from a single uint value by assigning it to every component.</summary>
  2570. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2571. public static uint4 uint4(uint v) { return new uint4(v); }
  2572. /// <summary>Returns a uint4 vector constructed from a single bool value by converting it to uint and assigning it to every component.</summary>
  2573. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2574. public static uint4 uint4(bool v) { return new uint4(v); }
  2575. /// <summary>Return a uint4 vector constructed from a bool4 vector by componentwise conversion.</summary>
  2576. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2577. public static uint4 uint4(bool4 v) { return new uint4(v); }
  2578. /// <summary>Returns a uint4 vector constructed from a single int value by converting it to uint and assigning it to every component.</summary>
  2579. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2580. public static uint4 uint4(int v) { return new uint4(v); }
  2581. /// <summary>Return a uint4 vector constructed from a int4 vector by componentwise conversion.</summary>
  2582. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2583. public static uint4 uint4(int4 v) { return new uint4(v); }
  2584. /// <summary>Returns a uint4 vector constructed from a single float value by converting it to uint and assigning it to every component.</summary>
  2585. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2586. public static uint4 uint4(float v) { return new uint4(v); }
  2587. /// <summary>Return a uint4 vector constructed from a float4 vector by componentwise conversion.</summary>
  2588. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2589. public static uint4 uint4(float4 v) { return new uint4(v); }
  2590. /// <summary>Returns a uint4 vector constructed from a single double value by converting it to uint and assigning it to every component.</summary>
  2591. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2592. public static uint4 uint4(double v) { return new uint4(v); }
  2593. /// <summary>Return a uint4 vector constructed from a double4 vector by componentwise conversion.</summary>
  2594. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2595. public static uint4 uint4(double4 v) { return new uint4(v); }
  2596. /// <summary>Returns a uint hash code of a uint4 vector.</summary>
  2597. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2598. public static uint hash(uint4 v)
  2599. {
  2600. return csum(v * uint4(0xB492BF15u, 0xD37220E3u, 0x7AA2C2BDu, 0xE16BC89Du)) + 0x7AA07CD3u;
  2601. }
  2602. /// <summary>
  2603. /// Returns a uint4 vector hash code of a uint4 vector.
  2604. /// When multiple elements are to be hashes together, it can more efficient to calculate and combine wide hash
  2605. /// that are only reduced to a narrow uint hash at the very end instead of at every step.
  2606. /// </summary>
  2607. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2608. public static uint4 hashwide(uint4 v)
  2609. {
  2610. return (v * uint4(0xAF642BA9u, 0xA8F2213Bu, 0x9F3FDC37u, 0xAC60D0C3u)) + 0x9263662Fu;
  2611. }
  2612. /// <summary>Returns the result of specified shuffling of the components from two uint4 vectors into a uint value.</summary>
  2613. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2614. public static uint shuffle(uint4 a, uint4 b, ShuffleComponent x)
  2615. {
  2616. return select_shuffle_component(a, b, x);
  2617. }
  2618. /// <summary>Returns the result of specified shuffling of the components from two uint4 vectors into a uint2 vector.</summary>
  2619. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2620. public static uint2 shuffle(uint4 a, uint4 b, ShuffleComponent x, ShuffleComponent y)
  2621. {
  2622. return uint2(
  2623. select_shuffle_component(a, b, x),
  2624. select_shuffle_component(a, b, y));
  2625. }
  2626. /// <summary>Returns the result of specified shuffling of the components from two uint4 vectors into a uint3 vector.</summary>
  2627. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2628. public static uint3 shuffle(uint4 a, uint4 b, ShuffleComponent x, ShuffleComponent y, ShuffleComponent z)
  2629. {
  2630. return uint3(
  2631. select_shuffle_component(a, b, x),
  2632. select_shuffle_component(a, b, y),
  2633. select_shuffle_component(a, b, z));
  2634. }
  2635. /// <summary>Returns the result of specified shuffling of the components from two uint4 vectors into a uint4 vector.</summary>
  2636. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2637. public static uint4 shuffle(uint4 a, uint4 b, ShuffleComponent x, ShuffleComponent y, ShuffleComponent z, ShuffleComponent w)
  2638. {
  2639. return uint4(
  2640. select_shuffle_component(a, b, x),
  2641. select_shuffle_component(a, b, y),
  2642. select_shuffle_component(a, b, z),
  2643. select_shuffle_component(a, b, w));
  2644. }
  2645. [MethodImpl(MethodImplOptions.AggressiveInlining)]
  2646. internal static uint select_shuffle_component(uint4 a, uint4 b, ShuffleComponent component)
  2647. {
  2648. switch(component)
  2649. {
  2650. case ShuffleComponent.LeftX:
  2651. return a.x;
  2652. case ShuffleComponent.LeftY:
  2653. return a.y;
  2654. case ShuffleComponent.LeftZ:
  2655. return a.z;
  2656. case ShuffleComponent.LeftW:
  2657. return a.w;
  2658. case ShuffleComponent.RightX:
  2659. return b.x;
  2660. case ShuffleComponent.RightY:
  2661. return b.y;
  2662. case ShuffleComponent.RightZ:
  2663. return b.z;
  2664. case ShuffleComponent.RightW:
  2665. return b.w;
  2666. default:
  2667. throw new System.ArgumentException("Invalid shuffle component: " + component);
  2668. }
  2669. }
  2670. }
  2671. }