Segment3D
fun Segment3D(x0: Double, y0: Double, z0: Double, x1: Double, y1: Double, z1: Double): Segment3D(source)
Creates a 3D segment defined by a start and an end point in 3D space.
Parameters
start
The starting point of the segment represented as a Vector3.
end
The ending point of the segment represented as a Vector3.
Quadratic bezier segment constructor
Parameters
start
starting point of the segment
c0
control point
end
end point of the segment
Cubic bezier segment constructor
Parameters
start
starting point of the segment
c0
first control point
c1
second control point
end
end point of the segment