public cross(other as Vector3d<NUMBER>) as Vector3d<NUMBER>:
Computes the cross product with another vector.
| Parameter | Description |
|---|---|
other | Other vector. |
A new vector perpendicular to both operands.
normal = Vector3d<Double>(1.0, 0.0, 0.0).cross(Vector3d<Double>(0.0, 1.0, 0.0))