normalized static method
Creates a vector from x, y, z and immediately normalizes it.
Implementation
static Vector3Base normalized(num x, num y, num z) => createFactory(
x.toDouble(),
y.toDouble(),
z.toDouble(),
).normalize() as Vector3Base;