← Standard library

float4

struct float4

Available without an import.

A four-component floating-point vector with x, y, z, and w fields. Arithmetic is component-wise. Swizzle getters select two to four components in their written order and may repeat them. Swizzles with no repeated component also have setters; assigning zw writes value.x to z and value.y to w.

Vectors.wax:639

Members

xfield

public float x

The x component.

Vectors.wax:643

yfield

public float y

The y component.

Vectors.wax:647

zfield

public float z

The z component.

Vectors.wax:651

wfield

public float w

The w component.

Vectors.wax:655

constructorconstructor

public constructor (float x, float y, float z, float w)

Stores the supplied components in order.

Vectors.wax:660

FromScalarconstructor

public constructor FromScalar (float value)

Copies the same scalar into every component.

Vectors.wax:670

From3constructor

public constructor From3 (float3 xyz, float w)

Copies the supplied vector components and any remaining scalar component in order.

Vectors.wax:680

From2constructor

public constructor From2 (float2 xy, float2 zw)

Copies the supplied vector components and any remaining scalar/vector components in order.

Vectors.wax:690

From2Scalarconstructor

public constructor From2Scalar (float2 xy, float z, float w)

Copies x/y from the vector and z/w from the scalars.

Vectors.wax:700

Zerogetter

public static get Zero() : float4

The all-zero vector.

Vectors.wax:711

Onegetter

public static get One() : float4

The all-one vector.

Vectors.wax:718

UnitXgetter

public static get UnitX() : float4

The unit vector along the X axis; all other components are zero.

Vectors.wax:725

UnitYgetter

public static get UnitY() : float4

The unit vector along the Y axis; all other components are zero.

Vectors.wax:732

UnitZgetter

public static get UnitZ() : float4

The unit vector along the Z axis; all other components are zero.

Vectors.wax:739

UnitWgetter

public static get UnitW() : float4

The unit vector along the W axis; all other components are zero.

Vectors.wax:746

lengthSquaredgetter

public get lengthSquared() : float

Returns the sum of squared components without taking a square root.

Vectors.wax:754

lengthgetter

public get length() : float

Returns the Euclidean magnitude.

Vectors.wax:761

normalizedgetter

public get normalized() : float4

Divides by the Euclidean magnitude. A zero magnitude returns the zero vector.

Vectors.wax:768

isZerogetter

public get isZero() : bool

Tests whether every component is exactly zero; uses no tolerance.

Vectors.wax:779

Dotmethod

public static fn Dot(float4 a, float4 b) : float

Returns the sum of component-wise products.

Vectors.wax:787

Distancemethod

public static fn Distance(float4 a, float4 b) : float

Returns the Euclidean distance between vectors.

Vectors.wax:794

DistanceSquaredmethod

public static fn DistanceSquared(float4 a, float4 b) : float

Returns squared Euclidean distance, avoiding a square root.

Vectors.wax:805

Lerpmethod

public static fn Lerp(float4 a, float4 b, float t) : float4

Interpolates component-wise as a + t*(b-a). Does not clamp t.

Vectors.wax:816

Reflectmethod

public static fn Reflect(float4 v, float4 normal) : float4

Reflects v around the supplied unit normal. Does not normalize normal.

Vectors.wax:828

Minmethod

public static fn Min(float4 a, float4 b) : float4

Takes the scalar Math.Min of each component pair, including its NaN and signed-zero rules.

Vectors.wax:841

Maxmethod

public static fn Max(float4 a, float4 b) : float4

Takes the scalar Math.Max of each component pair, including its NaN and signed-zero rules.

Vectors.wax:853

Absmethod

public static fn Abs(float4 v) : float4

Takes the absolute value of every component.

Vectors.wax:865

Clampmethod

public static fn Clamp(float4 v, float4 lo, float4 hi) : float4

Clamps each component between the corresponding ordered lo and hi bounds.

Vectors.wax:877

SmoothStepmethod

public static fn SmoothStep(float4 a, float4 b, float t) : float4

Clamps t to [0, 1], applies the cubic tt(3-2*t), and interpolates between a and b.

Vectors.wax:889

MoveTowardsmethod

public static fn MoveTowards(float4 current, float4 target, float maxDistanceDelta) : float4

Moves toward target by at most maxDistanceDelta in Euclidean distance without overshooting. Supply a nonnegative delta.

Vectors.wax:903

xxgetter

public get xx() : float2

Vectors.wax:922

xygetter

public get xy() : float2

Vectors.wax:923

xysetter

public set xy(float2 value) : void

Vectors.wax:924

xzgetter

public get xz() : float2

Vectors.wax:925

xzsetter

public set xz(float2 value) : void

Vectors.wax:926

xwgetter

public get xw() : float2

Vectors.wax:927

xwsetter

public set xw(float2 value) : void

Vectors.wax:928

yxgetter

public get yx() : float2

Vectors.wax:929

yxsetter

public set yx(float2 value) : void

Vectors.wax:930

yygetter

public get yy() : float2

Vectors.wax:931

yzgetter

public get yz() : float2

Vectors.wax:932

yzsetter

public set yz(float2 value) : void

Vectors.wax:933

ywgetter

public get yw() : float2

Vectors.wax:934

ywsetter

public set yw(float2 value) : void

Vectors.wax:935

zxgetter

public get zx() : float2

Vectors.wax:936

zxsetter

public set zx(float2 value) : void

Vectors.wax:937

zygetter

public get zy() : float2

Vectors.wax:938

zysetter

public set zy(float2 value) : void

Vectors.wax:939

zzgetter

public get zz() : float2

Vectors.wax:940

zwgetter

public get zw() : float2

Vectors.wax:941

zwsetter

public set zw(float2 value) : void

Vectors.wax:942

wxgetter

public get wx() : float2

Vectors.wax:943

wxsetter

public set wx(float2 value) : void

Vectors.wax:944

wygetter

public get wy() : float2

Vectors.wax:945

wysetter

public set wy(float2 value) : void

Vectors.wax:946

wzgetter

public get wz() : float2

Vectors.wax:947

wzsetter

public set wz(float2 value) : void

Vectors.wax:948

wwgetter

public get ww() : float2

Vectors.wax:949

xxxgetter

public get xxx() : float3

Vectors.wax:950

xxygetter

public get xxy() : float3

Vectors.wax:951

xxzgetter

public get xxz() : float3

Vectors.wax:952

xxwgetter

public get xxw() : float3

Vectors.wax:953

xyxgetter

public get xyx() : float3

Vectors.wax:954

xyygetter

public get xyy() : float3

Vectors.wax:955

xyzgetter

public get xyz() : float3

Vectors.wax:956

xyzsetter

public set xyz(float3 value) : void

Vectors.wax:957

xywgetter

public get xyw() : float3

Vectors.wax:958

xywsetter

public set xyw(float3 value) : void

Vectors.wax:959

xzxgetter

public get xzx() : float3

Vectors.wax:960

xzygetter

public get xzy() : float3

Vectors.wax:961

xzysetter

public set xzy(float3 value) : void

Vectors.wax:962

xzzgetter

public get xzz() : float3

Vectors.wax:963

xzwgetter

public get xzw() : float3

Vectors.wax:964

xzwsetter

public set xzw(float3 value) : void

Vectors.wax:965

xwxgetter

public get xwx() : float3

Vectors.wax:966

xwygetter

public get xwy() : float3

Vectors.wax:967

xwysetter

public set xwy(float3 value) : void

Vectors.wax:968

xwzgetter

public get xwz() : float3

Vectors.wax:969

xwzsetter

public set xwz(float3 value) : void

Vectors.wax:970

xwwgetter

public get xww() : float3

Vectors.wax:971

yxxgetter

public get yxx() : float3

Vectors.wax:972

yxygetter

public get yxy() : float3

Vectors.wax:973

yxzgetter

public get yxz() : float3

Vectors.wax:974

yxzsetter

public set yxz(float3 value) : void

Vectors.wax:975

yxwgetter

public get yxw() : float3

Vectors.wax:976

yxwsetter

public set yxw(float3 value) : void

Vectors.wax:977

yyxgetter

public get yyx() : float3

Vectors.wax:978

yyygetter

public get yyy() : float3

Vectors.wax:979

yyzgetter

public get yyz() : float3

Vectors.wax:980

yywgetter

public get yyw() : float3

Vectors.wax:981

yzxgetter

public get yzx() : float3

Vectors.wax:982

yzxsetter

public set yzx(float3 value) : void

Vectors.wax:983

yzygetter

public get yzy() : float3

Vectors.wax:984

yzzgetter

public get yzz() : float3

Vectors.wax:985

yzwgetter

public get yzw() : float3

Vectors.wax:986

yzwsetter

public set yzw(float3 value) : void

Vectors.wax:987

ywxgetter

public get ywx() : float3

Vectors.wax:988

ywxsetter

public set ywx(float3 value) : void

Vectors.wax:989

ywygetter

public get ywy() : float3

Vectors.wax:990

ywzgetter

public get ywz() : float3

Vectors.wax:991

ywzsetter

public set ywz(float3 value) : void

Vectors.wax:992

ywwgetter

public get yww() : float3

Vectors.wax:993

zxxgetter

public get zxx() : float3

Vectors.wax:994

zxygetter

public get zxy() : float3

Vectors.wax:995

zxysetter

public set zxy(float3 value) : void

Vectors.wax:996

zxzgetter

public get zxz() : float3

Vectors.wax:997

zxwgetter

public get zxw() : float3

Vectors.wax:998

zxwsetter

public set zxw(float3 value) : void

Vectors.wax:999

zyxgetter

public get zyx() : float3

Vectors.wax:1000

zyxsetter

public set zyx(float3 value) : void

Vectors.wax:1001

zyygetter

public get zyy() : float3

Vectors.wax:1002

zyzgetter

public get zyz() : float3

Vectors.wax:1003

zywgetter

public get zyw() : float3

Vectors.wax:1004

zywsetter

public set zyw(float3 value) : void

Vectors.wax:1005

zzxgetter

public get zzx() : float3

Vectors.wax:1006

zzygetter

public get zzy() : float3

Vectors.wax:1007

zzzgetter

public get zzz() : float3

Vectors.wax:1008

zzwgetter

public get zzw() : float3

Vectors.wax:1009

zwxgetter

public get zwx() : float3

Vectors.wax:1010

zwxsetter

public set zwx(float3 value) : void

Vectors.wax:1011

zwygetter

public get zwy() : float3

Vectors.wax:1012

zwysetter

public set zwy(float3 value) : void

Vectors.wax:1013

zwzgetter

public get zwz() : float3

Vectors.wax:1014

zwwgetter

public get zww() : float3

Vectors.wax:1015

wxxgetter

public get wxx() : float3

Vectors.wax:1016

wxygetter

public get wxy() : float3

Vectors.wax:1017

wxysetter

public set wxy(float3 value) : void

Vectors.wax:1018

wxzgetter

public get wxz() : float3

Vectors.wax:1019

wxzsetter

public set wxz(float3 value) : void

Vectors.wax:1020

wxwgetter

public get wxw() : float3

Vectors.wax:1021

wyxgetter

public get wyx() : float3

Vectors.wax:1022

wyxsetter

public set wyx(float3 value) : void

Vectors.wax:1023

wyygetter

public get wyy() : float3

Vectors.wax:1024

wyzgetter

public get wyz() : float3

Vectors.wax:1025

wyzsetter

public set wyz(float3 value) : void

Vectors.wax:1026

wywgetter

public get wyw() : float3

Vectors.wax:1027

wzxgetter

public get wzx() : float3

Vectors.wax:1028

wzxsetter

public set wzx(float3 value) : void

Vectors.wax:1029

wzygetter

public get wzy() : float3

Vectors.wax:1030

wzysetter

public set wzy(float3 value) : void

Vectors.wax:1031

wzzgetter

public get wzz() : float3

Vectors.wax:1032

wzwgetter

public get wzw() : float3

Vectors.wax:1033

wwxgetter

public get wwx() : float3

Vectors.wax:1034

wwygetter

public get wwy() : float3

Vectors.wax:1035

wwzgetter

public get wwz() : float3

Vectors.wax:1036

wwwgetter

public get www() : float3

Vectors.wax:1037

xxxxgetter

public get xxxx() : float4

Vectors.wax:1038

xxxygetter

public get xxxy() : float4

Vectors.wax:1039

xxxzgetter

public get xxxz() : float4

Vectors.wax:1040

xxxwgetter

public get xxxw() : float4

Vectors.wax:1041

xxyxgetter

public get xxyx() : float4

Vectors.wax:1042

xxyygetter

public get xxyy() : float4

Vectors.wax:1043

xxyzgetter

public get xxyz() : float4

Vectors.wax:1044

xxywgetter

public get xxyw() : float4

Vectors.wax:1045

xxzxgetter

public get xxzx() : float4

Vectors.wax:1046

xxzygetter

public get xxzy() : float4

Vectors.wax:1047

xxzzgetter

public get xxzz() : float4

Vectors.wax:1048

xxzwgetter

public get xxzw() : float4

Vectors.wax:1049

xxwxgetter

public get xxwx() : float4

Vectors.wax:1050

xxwygetter

public get xxwy() : float4

Vectors.wax:1051

xxwzgetter

public get xxwz() : float4

Vectors.wax:1052

xxwwgetter

public get xxww() : float4

Vectors.wax:1053

xyxxgetter

public get xyxx() : float4

Vectors.wax:1054

xyxygetter

public get xyxy() : float4

Vectors.wax:1055

xyxzgetter

public get xyxz() : float4

Vectors.wax:1056

xyxwgetter

public get xyxw() : float4

Vectors.wax:1057

xyyxgetter

public get xyyx() : float4

Vectors.wax:1058

xyyygetter

public get xyyy() : float4

Vectors.wax:1059

xyyzgetter

public get xyyz() : float4

Vectors.wax:1060

xyywgetter

public get xyyw() : float4

Vectors.wax:1061

xyzxgetter

public get xyzx() : float4

Vectors.wax:1062

xyzygetter

public get xyzy() : float4

Vectors.wax:1063

xyzzgetter

public get xyzz() : float4

Vectors.wax:1064

xyzwgetter

public get xyzw() : float4

Vectors.wax:1065

xyzwsetter

public set xyzw(float4 value) : void

Vectors.wax:1066

xywxgetter

public get xywx() : float4

Vectors.wax:1067

xywygetter

public get xywy() : float4

Vectors.wax:1068

xywzgetter

public get xywz() : float4

Vectors.wax:1069

xywzsetter

public set xywz(float4 value) : void

Vectors.wax:1070

xywwgetter

public get xyww() : float4

Vectors.wax:1071

xzxxgetter

public get xzxx() : float4

Vectors.wax:1072

xzxygetter

public get xzxy() : float4

Vectors.wax:1073

xzxzgetter

public get xzxz() : float4

Vectors.wax:1074

xzxwgetter

public get xzxw() : float4

Vectors.wax:1075

xzyxgetter

public get xzyx() : float4

Vectors.wax:1076

xzyygetter

public get xzyy() : float4

Vectors.wax:1077

xzyzgetter

public get xzyz() : float4

Vectors.wax:1078

xzywgetter

public get xzyw() : float4

Vectors.wax:1079

xzywsetter

public set xzyw(float4 value) : void

Vectors.wax:1080

xzzxgetter

public get xzzx() : float4

Vectors.wax:1081

xzzygetter

public get xzzy() : float4

Vectors.wax:1082

xzzzgetter

public get xzzz() : float4

Vectors.wax:1083

xzzwgetter

public get xzzw() : float4

Vectors.wax:1084

xzwxgetter

public get xzwx() : float4

Vectors.wax:1085

xzwygetter

public get xzwy() : float4

Vectors.wax:1086

xzwysetter

public set xzwy(float4 value) : void

Vectors.wax:1087

xzwzgetter

public get xzwz() : float4

Vectors.wax:1088

xzwwgetter

public get xzww() : float4

Vectors.wax:1089

xwxxgetter

public get xwxx() : float4

Vectors.wax:1090

xwxygetter

public get xwxy() : float4

Vectors.wax:1091

xwxzgetter

public get xwxz() : float4

Vectors.wax:1092

xwxwgetter

public get xwxw() : float4

Vectors.wax:1093

xwyxgetter

public get xwyx() : float4

Vectors.wax:1094

xwyygetter

public get xwyy() : float4

Vectors.wax:1095

xwyzgetter

public get xwyz() : float4

Vectors.wax:1096

xwyzsetter

public set xwyz(float4 value) : void

Vectors.wax:1097

xwywgetter

public get xwyw() : float4

Vectors.wax:1098

xwzxgetter

public get xwzx() : float4

Vectors.wax:1099

xwzygetter

public get xwzy() : float4

Vectors.wax:1100

xwzysetter

public set xwzy(float4 value) : void

Vectors.wax:1101

xwzzgetter

public get xwzz() : float4

Vectors.wax:1102

xwzwgetter

public get xwzw() : float4

Vectors.wax:1103

xwwxgetter

public get xwwx() : float4

Vectors.wax:1104

xwwygetter

public get xwwy() : float4

Vectors.wax:1105

xwwzgetter

public get xwwz() : float4

Vectors.wax:1106

xwwwgetter

public get xwww() : float4

Vectors.wax:1107

yxxxgetter

public get yxxx() : float4

Vectors.wax:1108

yxxygetter

public get yxxy() : float4

Vectors.wax:1109

yxxzgetter

public get yxxz() : float4

Vectors.wax:1110

yxxwgetter

public get yxxw() : float4

Vectors.wax:1111

yxyxgetter

public get yxyx() : float4

Vectors.wax:1112

yxyygetter

public get yxyy() : float4

Vectors.wax:1113

yxyzgetter

public get yxyz() : float4

Vectors.wax:1114

yxywgetter

public get yxyw() : float4

Vectors.wax:1115

yxzxgetter

public get yxzx() : float4

Vectors.wax:1116

yxzygetter

public get yxzy() : float4

Vectors.wax:1117

yxzzgetter

public get yxzz() : float4

Vectors.wax:1118

yxzwgetter

public get yxzw() : float4

Vectors.wax:1119

yxzwsetter

public set yxzw(float4 value) : void

Vectors.wax:1120

yxwxgetter

public get yxwx() : float4

Vectors.wax:1121

yxwygetter

public get yxwy() : float4

Vectors.wax:1122

yxwzgetter

public get yxwz() : float4

Vectors.wax:1123

yxwzsetter

public set yxwz(float4 value) : void

Vectors.wax:1124

yxwwgetter

public get yxww() : float4

Vectors.wax:1125

yyxxgetter

public get yyxx() : float4

Vectors.wax:1126

yyxygetter

public get yyxy() : float4

Vectors.wax:1127

yyxzgetter

public get yyxz() : float4

Vectors.wax:1128

yyxwgetter

public get yyxw() : float4

Vectors.wax:1129

yyyxgetter

public get yyyx() : float4

Vectors.wax:1130

yyyygetter

public get yyyy() : float4

Vectors.wax:1131

yyyzgetter

public get yyyz() : float4

Vectors.wax:1132

yyywgetter

public get yyyw() : float4

Vectors.wax:1133

yyzxgetter

public get yyzx() : float4

Vectors.wax:1134

yyzygetter

public get yyzy() : float4

Vectors.wax:1135

yyzzgetter

public get yyzz() : float4

Vectors.wax:1136

yyzwgetter

public get yyzw() : float4

Vectors.wax:1137

yywxgetter

public get yywx() : float4

Vectors.wax:1138

yywygetter

public get yywy() : float4

Vectors.wax:1139

yywzgetter

public get yywz() : float4

Vectors.wax:1140

yywwgetter

public get yyww() : float4

Vectors.wax:1141

yzxxgetter

public get yzxx() : float4

Vectors.wax:1142

yzxygetter

public get yzxy() : float4

Vectors.wax:1143

yzxzgetter

public get yzxz() : float4

Vectors.wax:1144

yzxwgetter

public get yzxw() : float4

Vectors.wax:1145

yzxwsetter

public set yzxw(float4 value) : void

Vectors.wax:1146

yzyxgetter

public get yzyx() : float4

Vectors.wax:1147

yzyygetter

public get yzyy() : float4

Vectors.wax:1148

yzyzgetter

public get yzyz() : float4

Vectors.wax:1149

yzywgetter

public get yzyw() : float4

Vectors.wax:1150

yzzxgetter

public get yzzx() : float4

Vectors.wax:1151

yzzygetter

public get yzzy() : float4

Vectors.wax:1152

yzzzgetter

public get yzzz() : float4

Vectors.wax:1153

yzzwgetter

public get yzzw() : float4

Vectors.wax:1154

yzwxgetter

public get yzwx() : float4

Vectors.wax:1155

yzwxsetter

public set yzwx(float4 value) : void

Vectors.wax:1156

yzwygetter

public get yzwy() : float4

Vectors.wax:1157

yzwzgetter

public get yzwz() : float4

Vectors.wax:1158

yzwwgetter

public get yzww() : float4

Vectors.wax:1159

ywxxgetter

public get ywxx() : float4

Vectors.wax:1160

ywxygetter

public get ywxy() : float4

Vectors.wax:1161

ywxzgetter

public get ywxz() : float4

Vectors.wax:1162

ywxzsetter

public set ywxz(float4 value) : void

Vectors.wax:1163

ywxwgetter

public get ywxw() : float4

Vectors.wax:1164

ywyxgetter

public get ywyx() : float4

Vectors.wax:1165

ywyygetter

public get ywyy() : float4

Vectors.wax:1166

ywyzgetter

public get ywyz() : float4

Vectors.wax:1167

ywywgetter

public get ywyw() : float4

Vectors.wax:1168

ywzxgetter

public get ywzx() : float4

Vectors.wax:1169

ywzxsetter

public set ywzx(float4 value) : void

Vectors.wax:1170

ywzygetter

public get ywzy() : float4

Vectors.wax:1171

ywzzgetter

public get ywzz() : float4

Vectors.wax:1172

ywzwgetter

public get ywzw() : float4

Vectors.wax:1173

ywwxgetter

public get ywwx() : float4

Vectors.wax:1174

ywwygetter

public get ywwy() : float4

Vectors.wax:1175

ywwzgetter

public get ywwz() : float4

Vectors.wax:1176

ywwwgetter

public get ywww() : float4

Vectors.wax:1177

zxxxgetter

public get zxxx() : float4

Vectors.wax:1178

zxxygetter

public get zxxy() : float4

Vectors.wax:1179

zxxzgetter

public get zxxz() : float4

Vectors.wax:1180

zxxwgetter

public get zxxw() : float4

Vectors.wax:1181

zxyxgetter

public get zxyx() : float4

Vectors.wax:1182

zxyygetter

public get zxyy() : float4

Vectors.wax:1183

zxyzgetter

public get zxyz() : float4

Vectors.wax:1184

zxywgetter

public get zxyw() : float4

Vectors.wax:1185

zxywsetter

public set zxyw(float4 value) : void

Vectors.wax:1186

zxzxgetter

public get zxzx() : float4

Vectors.wax:1187

zxzygetter

public get zxzy() : float4

Vectors.wax:1188

zxzzgetter

public get zxzz() : float4

Vectors.wax:1189

zxzwgetter

public get zxzw() : float4

Vectors.wax:1190

zxwxgetter

public get zxwx() : float4

Vectors.wax:1191

zxwygetter

public get zxwy() : float4

Vectors.wax:1192

zxwysetter

public set zxwy(float4 value) : void

Vectors.wax:1193

zxwzgetter

public get zxwz() : float4

Vectors.wax:1194

zxwwgetter

public get zxww() : float4

Vectors.wax:1195

zyxxgetter

public get zyxx() : float4

Vectors.wax:1196

zyxygetter

public get zyxy() : float4

Vectors.wax:1197

zyxzgetter

public get zyxz() : float4

Vectors.wax:1198

zyxwgetter

public get zyxw() : float4

Vectors.wax:1199

zyxwsetter

public set zyxw(float4 value) : void

Vectors.wax:1200

zyyxgetter

public get zyyx() : float4

Vectors.wax:1201

zyyygetter

public get zyyy() : float4

Vectors.wax:1202

zyyzgetter

public get zyyz() : float4

Vectors.wax:1203

zyywgetter

public get zyyw() : float4

Vectors.wax:1204

zyzxgetter

public get zyzx() : float4

Vectors.wax:1205

zyzygetter

public get zyzy() : float4

Vectors.wax:1206

zyzzgetter

public get zyzz() : float4

Vectors.wax:1207

zyzwgetter

public get zyzw() : float4

Vectors.wax:1208

zywxgetter

public get zywx() : float4

Vectors.wax:1209

zywxsetter

public set zywx(float4 value) : void

Vectors.wax:1210

zywygetter

public get zywy() : float4

Vectors.wax:1211

zywzgetter

public get zywz() : float4

Vectors.wax:1212

zywwgetter

public get zyww() : float4

Vectors.wax:1213

zzxxgetter

public get zzxx() : float4

Vectors.wax:1214

zzxygetter

public get zzxy() : float4

Vectors.wax:1215

zzxzgetter

public get zzxz() : float4

Vectors.wax:1216

zzxwgetter

public get zzxw() : float4

Vectors.wax:1217

zzyxgetter

public get zzyx() : float4

Vectors.wax:1218

zzyygetter

public get zzyy() : float4

Vectors.wax:1219

zzyzgetter

public get zzyz() : float4

Vectors.wax:1220

zzywgetter

public get zzyw() : float4

Vectors.wax:1221

zzzxgetter

public get zzzx() : float4

Vectors.wax:1222

zzzygetter

public get zzzy() : float4

Vectors.wax:1223

zzzzgetter

public get zzzz() : float4

Vectors.wax:1224

zzzwgetter

public get zzzw() : float4

Vectors.wax:1225

zzwxgetter

public get zzwx() : float4

Vectors.wax:1226

zzwygetter

public get zzwy() : float4

Vectors.wax:1227

zzwzgetter

public get zzwz() : float4

Vectors.wax:1228

zzwwgetter

public get zzww() : float4

Vectors.wax:1229

zwxxgetter

public get zwxx() : float4

Vectors.wax:1230

zwxygetter

public get zwxy() : float4

Vectors.wax:1231

zwxysetter

public set zwxy(float4 value) : void

Vectors.wax:1232

zwxzgetter

public get zwxz() : float4

Vectors.wax:1233

zwxwgetter

public get zwxw() : float4

Vectors.wax:1234

zwyxgetter

public get zwyx() : float4

Vectors.wax:1235

zwyxsetter

public set zwyx(float4 value) : void

Vectors.wax:1236

zwyygetter

public get zwyy() : float4

Vectors.wax:1237

zwyzgetter

public get zwyz() : float4

Vectors.wax:1238

zwywgetter

public get zwyw() : float4

Vectors.wax:1239

zwzxgetter

public get zwzx() : float4

Vectors.wax:1240

zwzygetter

public get zwzy() : float4

Vectors.wax:1241

zwzzgetter

public get zwzz() : float4

Vectors.wax:1242

zwzwgetter

public get zwzw() : float4

Vectors.wax:1243

zwwxgetter

public get zwwx() : float4

Vectors.wax:1244

zwwygetter

public get zwwy() : float4

Vectors.wax:1245

zwwzgetter

public get zwwz() : float4

Vectors.wax:1246

zwwwgetter

public get zwww() : float4

Vectors.wax:1247

wxxxgetter

public get wxxx() : float4

Vectors.wax:1248

wxxygetter

public get wxxy() : float4

Vectors.wax:1249

wxxzgetter

public get wxxz() : float4

Vectors.wax:1250

wxxwgetter

public get wxxw() : float4

Vectors.wax:1251

wxyxgetter

public get wxyx() : float4

Vectors.wax:1252

wxyygetter

public get wxyy() : float4

Vectors.wax:1253

wxyzgetter

public get wxyz() : float4

Vectors.wax:1254

wxyzsetter

public set wxyz(float4 value) : void

Vectors.wax:1255

wxywgetter

public get wxyw() : float4

Vectors.wax:1256

wxzxgetter

public get wxzx() : float4

Vectors.wax:1257

wxzygetter

public get wxzy() : float4

Vectors.wax:1258

wxzysetter

public set wxzy(float4 value) : void

Vectors.wax:1259

wxzzgetter

public get wxzz() : float4

Vectors.wax:1260

wxzwgetter

public get wxzw() : float4

Vectors.wax:1261

wxwxgetter

public get wxwx() : float4

Vectors.wax:1262

wxwygetter

public get wxwy() : float4

Vectors.wax:1263

wxwzgetter

public get wxwz() : float4

Vectors.wax:1264

wxwwgetter

public get wxww() : float4

Vectors.wax:1265

wyxxgetter

public get wyxx() : float4

Vectors.wax:1266

wyxygetter

public get wyxy() : float4

Vectors.wax:1267

wyxzgetter

public get wyxz() : float4

Vectors.wax:1268

wyxzsetter

public set wyxz(float4 value) : void

Vectors.wax:1269

wyxwgetter

public get wyxw() : float4

Vectors.wax:1270

wyyxgetter

public get wyyx() : float4

Vectors.wax:1271

wyyygetter

public get wyyy() : float4

Vectors.wax:1272

wyyzgetter

public get wyyz() : float4

Vectors.wax:1273

wyywgetter

public get wyyw() : float4

Vectors.wax:1274

wyzxgetter

public get wyzx() : float4

Vectors.wax:1275

wyzxsetter

public set wyzx(float4 value) : void

Vectors.wax:1276

wyzygetter

public get wyzy() : float4

Vectors.wax:1277

wyzzgetter

public get wyzz() : float4

Vectors.wax:1278

wyzwgetter

public get wyzw() : float4

Vectors.wax:1279

wywxgetter

public get wywx() : float4

Vectors.wax:1280

wywygetter

public get wywy() : float4

Vectors.wax:1281

wywzgetter

public get wywz() : float4

Vectors.wax:1282

wywwgetter

public get wyww() : float4

Vectors.wax:1283

wzxxgetter

public get wzxx() : float4

Vectors.wax:1284

wzxygetter

public get wzxy() : float4

Vectors.wax:1285

wzxysetter

public set wzxy(float4 value) : void

Vectors.wax:1286

wzxzgetter

public get wzxz() : float4

Vectors.wax:1287

wzxwgetter

public get wzxw() : float4

Vectors.wax:1288

wzyxgetter

public get wzyx() : float4

Vectors.wax:1289

wzyxsetter

public set wzyx(float4 value) : void

Vectors.wax:1290

wzyygetter

public get wzyy() : float4

Vectors.wax:1291

wzyzgetter

public get wzyz() : float4

Vectors.wax:1292

wzywgetter

public get wzyw() : float4

Vectors.wax:1293

wzzxgetter

public get wzzx() : float4

Vectors.wax:1294

wzzygetter

public get wzzy() : float4

Vectors.wax:1295

wzzzgetter

public get wzzz() : float4

Vectors.wax:1296

wzzwgetter

public get wzzw() : float4

Vectors.wax:1297

wzwxgetter

public get wzwx() : float4

Vectors.wax:1298

wzwygetter

public get wzwy() : float4

Vectors.wax:1299

wzwzgetter

public get wzwz() : float4

Vectors.wax:1300

wzwwgetter

public get wzww() : float4

Vectors.wax:1301

wwxxgetter

public get wwxx() : float4

Vectors.wax:1302

wwxygetter

public get wwxy() : float4

Vectors.wax:1303

wwxzgetter

public get wwxz() : float4

Vectors.wax:1304

wwxwgetter

public get wwxw() : float4

Vectors.wax:1305

wwyxgetter

public get wwyx() : float4

Vectors.wax:1306

wwyygetter

public get wwyy() : float4

Vectors.wax:1307

wwyzgetter

public get wwyz() : float4

Vectors.wax:1308

wwywgetter

public get wwyw() : float4

Vectors.wax:1309

wwzxgetter

public get wwzx() : float4

Vectors.wax:1310

wwzygetter

public get wwzy() : float4

Vectors.wax:1311

wwzzgetter

public get wwzz() : float4

Vectors.wax:1312

wwzwgetter

public get wwzw() : float4

Vectors.wax:1313

wwwxgetter

public get wwwx() : float4

Vectors.wax:1314

wwwygetter

public get wwwy() : float4

Vectors.wax:1315

wwwzgetter

public get wwwz() : float4

Vectors.wax:1316

wwwwgetter

public get wwww() : float4

Vectors.wax:1317

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.