|
|
Le 24/11/2015 08:33, Mike Horvath a écrit :
> Is it possible to have multiple clipped_by statements in an object? How
> do you combine multiple clipped_by objects into one?
>
>
> Mike
You can clip with an intersection or union, but from my memory of code,
there is only even one pointer for clipped_by, so if the parser allow
more than once, you would get, i would guess, either the first or the
last one only.
Post a reply to this message
|
|
|
|
Le 15-11-24 02:33, Mike Horvath a écrit :
> Is it possible to have multiple clipped_by statements in an object? How
> do you combine multiple clipped_by objects into one?
>
>
> Mike
I don't think so.
Usualy, you use an union of several shapes when you want a clipped_by
several shapes.
clipped_by{union{object{Object1}object{Object2}[...]}}
You may also predefine the union:
#declare Clipper=union{object{Object1}object{Object2}}
clipped_by{Clipper}
Alain
Post a reply to this message
|
|