Message 1 of 5
Parametrics of scripts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm writing an add-in that creates equally spaced splines after asking the user to identify two bodies and the inside edge of a miter joint. I'd like to account for the possibility of the edge of the miter joint not terminating in the same place on both the bodies.
How do I do this while maintaining parametricity? I could easily just find the shared edge and compute the location of the splines in python but that breaks parametricity so updating the model would ruin it!
Ideally, I'd...
1) find and measure the shared edge parametrically,
2) sketch equally spaced points based on a point-along-path and
3) create the splines based on the points.