kcl → types →
std::Point3d
A point in three dimensional space.
type Point3d = [number(Length); 3]
Point3d
is an alias for a three-element array of numbers. To write a value
with type Point3d
, use an array, e.g., [0, 0, 0]
or [5.0, 3.14, 6.8]
.