Google Code Exporter
Google Code Exporter
``` What steps will reproduce the problem? 1. carve::mesh::MeshSet* DBProCarve::makeCube(const carve::math::Matrix &transform) { carve::input::PolyhedronData data; data.addVertex(transform * carve::geom::VECTOR(+20.0, +20.0, +20.0)); data.addVertex(transform * carve::geom::VECTOR(-20.0, +20.0, +20.0)); data.addVertex(transform * carve::geom::VECTOR(-20.0, -20.0, +20.0));...
``` The current version (e82d852e4fb0) has a memory leak in intersect.cpp (1377) and 1378 from a_rtree and b_rtree. Deleting them fixes it as expected (shown below). carve::mesh::MeshSet *carve::csg::CSG::compute(carve::mesh::MeshSet *a, ......
``` What steps will reproduce the problem? 1. Turn options CARVE_DEBUG and CARVE_DEBUG_WRITE_PLY_DATA on in CMakeLists.txt 2. cmake . 3. cd src; make What is the expected output? What do...
``` What steps will reproduce the problem? 1. intersect "cylinder.ply | sphere.ply" What is the expected output? What do you see instead? I try to form the union of a...
``` Relates to Issue 39 and its data, which does not to generate a crash, but instead broken mesh output for us. We have submitted bug in more detail to...
``` i get all libs,but i can't get carve/polyhedron.hpp,why? ``` Original issue reported on code.google.com by `[email protected]` on 19 Aug 2013 at 2:59
``` I'm currently trying to create some intersections with carve. I keep getting the following error from time to time: "~/carve-1.4.0/lib/intersect_classify_common_impl.hpp:255 "unhandled switch case -- should not happen"" It seems...
``` What steps will reproduce the problem? 1. Executed autogen.sh as follows. sh ./autogen.sh This created 'configure' file. 2. Executed configure as follows sh ./configure --prefix=$HOME/carve 3. then executed make....
``` I am trying to run test_slice in test_slice, but it shows many errors. What could be wrong? FACE LOOP ERROR: 0x65a960-0x65ae38 : 1 FACE LOOP ERROR: 0x65a7a8-0x65f7f0 : 1...
``` I had to add these additional Preprocessor Definitions for the 'carvelib', 'fileformats', 'intersect', 'texture_example', 'view' projects: BOOST_NO_0X_HDR_INITIALIZER_LIST _STDINT To get it to compile without any nasty errors. you also...