Google Code Exporter
Google Code Exporter
``` Ok, I think this is what's happening: I suspect you're doing two CSG operations, but only calling canonicalize() on the result. If I'm right, then the differing order of...
``` The test is just a boolean between the files I sent with comment 5, so no multiple ops. If I canonicalize both inputs before the op, I get a...
``` int main(int argc, char **argv) { TestScene *scene = new TestScene(argc, argv, 3); carve::input::PolyhedronData data; data.addVertex(carve::geom::VECTOR(1,1,1)); data.addVertex(carve::geom::VECTOR(-1,1,1)); data.addVertex(carve::geom::VECTOR(-1,-1,1)); data.addVertex(carve::geom::VECTOR(1,-1,1)); data.addVertex(carve::geom::VECTOR(1,1,-1)); data.addVertex(carve::geom::VECTOR(-1,1,-1)); data.addVertex(carve::geom::VECTOR(-1,-1,-1)); data.addVertex(carve::geom::VECTOR(1,-1,-1)); data.addFace(0,1,2,3); data.addFace(7,6,5,4); data.addFace(0,4,5,1); data.addFace(1,5,6,2); data.addFace(2,6,7,3); data.addFace(3,7,4,0);...
``` (The relevant info is on the second page of the thread.) ``` Original comment by `[email protected]` on 3 Oct 2012 at 10:47
``` Shows up, when compiling with Intel Compiler 8.1 ``` Original comment by `[email protected]` on 28 May 2010 at 1:58
``` The quadrilateral merging code is incomplete, and is not used within Carve at this point. I'll commit a fix that stops the compiler complaining, as a temporary solution. ```...
``` Thanks for these test cases. I've just committed a change that appears to fix both. Could you please check? Also, as a general rule it's a good idea to...
``` Put the code back in blender to test and still get random hangs when using quads and triangulate. What exactly does the rescale do? What params does it need?...
``` Can you get me another example, possibly? The rescaler shifts and scales coordinates to be as close as possible to the unit cube without losing any information. The transformation,...
``` Here's the files I tested with; they should be the same as ones I posted before but I'm not completely sure. It doesn't always hang when running intersect from...