Notifications
Clear all

[Closed] Cutting Geometry based on Intersection

Hi,

I’m looking for a script that will create cuts on an Object, let’s call it Object A, based on its intersection with Object B.

I’ve been testing Compound Objects -> Boolean -> Cut and it’s basically doing what I want, but the results have been a little erratic at times.

Can anyone help me out? Is this possible with a max script?

Thanks

1 Reply

hi,
you can do additive boolean with:
$‘objectname1’ + $‘objectname2’

subtractive:
$‘objectname1’ – $‘objectname2’

intersection / cut :
$‘objectname1’-(copy $‘objectname1’ – $‘objectname2’)

or (getting intersectionpart only) :

tmp=(copy $‘objectname1’ – $‘objectname2’)
$‘objectname1’- tmp
delete tmp

yours
Thorsten