Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Trim a body with a plane
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-12-2007 01:39 PM
Hi guys,
could anyone tell me how to trim a body, e.g. cylinder with a plane in Scheme? Here I create a cylinder as an example, but the body can be a body with a single shell that has many faces.
e.g: I create a cylinder
(solid:cylinder (position 10 10 0) (position 10 10 30) 15)
Now I trim this cylinder with a plane:
(face:plane (position -5 -5 10) 100 100 (gvector 0.21 0.21 0.9))
I may not give the right commands here. But what I want is to chop the cylinder above a certain height. I can create another block, and do the subtraction, but I think there should be a easy way to do that in Scheme.
Thanks for help.
Eric
Re: Trim a body with a plane
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-15-2007 08:46 AM
Your best choice is to use a full solid, such as a block, that is exact on the face you want to trim and larger than needed on all other faces. Theoretically, it is possible to do the subtraction with a one-sided sheet body, but this can result in unexpected surprises. It is usually better to provide a fully defined solid.
This applies even if the cutting surface is not as simple as a plane. We always define the desired cutting surface accurately and define a solid that is beyond the other faces of the solid to be cut by several orders of magnitude higher than resabs. It may be a little extra work, but you are looking for consistency and speed in the subtraction.
Re: Trim a body with a plane
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-15-2007 09:37 AM
Hi Eric,
Try bool:chop.
Re: Trim a body with a plane
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-18-2007 06:49 AM
yes, bool:chop works. Thanks.

