random method
Implementation
Vector4 random() {
x = Math.random();
y = Math.random();
z = Math.random();
w = Math.random();
return this;
}
Vector4 random() {
x = Math.random();
y = Math.random();
z = Math.random();
w = Math.random();
return this;
}