* Add KCL constants for sweep relativeTo strings Before: ``` sweep(pill, path = sweepPath, relativeTo = "trajectoryCurve") ``` After: ``` sweep(pill, path = sweepPath, relativeTo = sweep::TRAJECTORY) ``` * Update docs
6 lines
195 B
Plaintext
6 lines
195 B
Plaintext
/// Local/relative to the trajectory curve
|
|
export TRAJECTORY = 'trajectoryCurve'
|
|
|
|
/// Local/relative to a position centered within the plane being sketched on
|
|
export SKETCH_PLANE = 'sketchPlane'
|