klyn.math.geometry.Vector3d.cross
method
public cross(other as Vector3d<NUMBER>) as Vector3d<NUMBER>:
Description

Computes the cross product with another vector.

Parameters
ParameterDescription
otherOther vector.
Returns

A new vector perpendicular to both operands.

Example
normal = Vector3d<Double>(1.0, 0.0, 0.0).cross(Vector3d<Double>(0.0, 1.0, 0.0))