- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Say i've created a cylinder between two end points points and I have two middle points where I want to subdivide the cylinder. What is the best way of going about this?
I would also like to do this regardless of how the cylinder is orientated (vertical, diagonal or horizontal) Cheers.
So far I have this to create the cylinder:
point01 = getnodebyname "point001"
point02 = getnodebyname "point002"
fn drawCylinderBetweenTwoPoints pt1 pt2=
cylinder radius:2 pos:pt1 dir:(pt2-pt1) height:(distance pt1 pt2)
drawCylinderBetweenTwoPoints point01.pos point02.pos
Solved! Go to Solution.