forward property

Vector3 forward

Implementation

Vector3 get forward {
  final double x = _m4storage[8];
  final double y = _m4storage[9];
  final double z = _m4storage[10];
  return new Vector3(x, y, z);
}