Author Topic: Slice a region  (Read 2917 times)

0 Members and 1 Guest are viewing this topic.

Andrey Bushman

  • Swamp Rat
  • Posts: 864
Slice a region
« on: May 26, 2014, 03:53:29 AM »
* AutoCAD 2009 SP3 Enu x86/x64

It is necessary to slice a region object as a grid (dx, dy). The result is the new collection of regions.

My current decision: I create the Solid3d based on the target region and slice it as a grid. So I got many Solid3d objects. Then I explode each of the Solid3d and remove the excess regions.

But my decision is slow (in my opinion). Can I get the same result without the Solid3d creating?

Thank you.
« Last Edit: May 26, 2014, 05:25:15 AM by Andrey Bushman »

SEANT

  • Bull Frog
  • Posts: 345
Re: Slice a region
« Reply #1 on: May 26, 2014, 07:45:02 AM »
Perhaps you could systematically construct a region based on the (dx, dy), create a copy of the original target region, then Boolean Intersect the two.  Repeat as necessary.
Sean Tessier
AutoCAD 2016 Mechanical

Andrey Bushman

  • Swamp Rat
  • Posts: 864
Re: Slice a region
« Reply #2 on: May 27, 2014, 02:09:32 PM »
then Boolean Intersect the two.
I use it now, thank you.