Giles Bathgate

Results 127 comments of Giles Bathgate

I imagine that this ununion() module is so as not to break backwards compatibility and have to explicitly declare not unioning the objects. Can the group() module be cleverly used...

@nophead group() is currently just an alias for union(), so you might think you are saving processing, but actually its not doing anything for you until group is implemented properly....

Another point, there is an implicit union() inside for loops, leading to the need for intersection_for() {} in place of: intersection() for() { } which is more generic. I showed...

@francoisbecker I think the color() module only works for rendering using OpenCSG, and you cannot export a model to STL until it has been rendered in CGAL mode. (For multi...

@francoisbecker What I am trying to get at is that the CGAL geometry doesn't contain color information. As I understand, (prior to this lazy union development) the entire geometry is...

@kintel Checking whether the AABB overlaps is quite trivial, but for multi material probably not very useful (I assume people want to have two parts touching/interlocking) so I think you...

@kintel An operator that takes two overlapping volumes an returns two non-overlapping ones is just the difference operator, with the exception that you want to keep hold of the volume...

@kintel Well yes you could do it in userspace, but I provided the openscad example to aid explanation (perhaps that was a bit misleading.) I meant that this new operation...

I have written a proof of concept modification to DiscUtils which includes a demonstration of creating an "autounattend.xml" using Long File Name support. See PR https://github.com/DiscUtils/DiscUtils/pull/71

@LordMike Any feedback on my PR would be appreciated.