boolean union for 3 solids

boolean union for 3 solids

Langephd
Participant Participant
878 Views
1 Reply
Message 1 of 2

boolean union for 3 solids

Langephd
Participant
Participant

(vla-Boolean Ob_0 acUnion Ob_1)

This boolean operation has not return value, so how can I repeat the operation with the resulting object and another one to have a union of 3 objects? like...

(vla-Boolean UnionOfOb_0andOb_1 acUnion Obj_2)

Thank you for your thoughts,

JoJo

0 Likes
Accepted solutions (1)
879 Views
1 Reply
Reply (1)
Message 2 of 2

Langephd
Participant
Participant
Accepted solution

Sorry guys but I found the solution:

The result object of the first union is the first object obj_0.

So it will be:

(vla-boolean obj_o acUnion obj_1) to obtain the union of the first two objects and to join the next object to them will be:

(vla-boolean obj_0 acUnion obj_2)

Thanks anyway,

JoJo

0 Likes