hi
I am trying to use the collision data from Quake3 BSP maps. This data is stored as so called brushes, which are actually polytopes (defined by a set of planes). Since common physics engines only know trimeshes, I would like to convert these polytopes to trimeshes. But I can’t find any good coding examples for this.
A dumb solution would be to compute all cutting lines between the planes, sort out the relevant ones and compute the cutting points between them and finally create the desired triangles from these points. Of course this is not very smart and will be quite expensive. I suspect, there’s a smarter way.
Could anyone point me to good examples or give me other hints?
Thanks in advance.
Marvin