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

Computes the dot product with another vector.

Parameters
ParameterDescription
otherOther vector.
Returns

Dot product as Double.

Example
value = Vector3d<Double>(1.0, 2.0, 3.0).dot(Vector3d<Double>(4.0, 5.0, 6.0))