From: Mikko Rasa Date: Wed, 22 May 2013 20:03:07 +0000 (+0300) Subject: Make CompositeShape::get_intersections work with null points X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=39626a640e3b6a1ff8894e0cf47db68540d669b2;hp=39626a640e3b6a1ff8894e0cf47db68540d669b2;p=libs%2Fmath.git Make CompositeShape::get_intersections work with null points This was a bit tricky, since it's necessary to inspect the points returned by component shapes to see if they're actually on the composite surface. To that end, a temporary buffer is allocated. This is most likely used in interactive point-and-pick situations, so the performance loss should not be significant. ---