forward property
Implementation
Vector3 get forward {
final double x = _m3storage[6];
final double y = _m3storage[7];
final double z = _m3storage[8];
return new Vector3(x, y, z);
}
Vector3 get forward {
final double x = _m3storage[6];
final double y = _m3storage[7];
final double z = _m3storage[8];
return new Vector3(x, y, z);
}