carve
carve copied to clipboard
Automatically exported from code.google.com/p/carve
``` What steps will reproduce the problem? Run tests/test_slice What is the expected output? What do you see instead? I expect to see the sliced output. Instead I see a...
``` srandomdev() in geom3d_unittest.cpp is missing the #if defined() wrapper. #if defined(__APPLE__) srandomdev(); #else srandom(time(NULL)); #endif ``` Original issue reported on code.google.com by `[email protected]` on 13 Feb 2012 at 7:47
``` In cmake-2.8.7 the find module is called FindBoost.cmake. Changing BOOST to Boost on the appropriate line in CMakeLists.txt fixed things. ``` Original issue reported on code.google.com by `[email protected]` on...
``` I came back to have another go on implementing Python bindings for carve, but it fails to build on OS X (+ports). First there was: $ makeMaking all in...
``` Hi all ;o) I'm making a "A_MINUS_B" with 2 operands (linked below). With "-e" there is no output Without "-e" there is an output but no "100% valid" (top...
``` What steps will reproduce the problem? 1. Not having configure What is the expected output? What do you see instead? a Makefile or cmake script What version of the...
``` Building on linux without boost. Without this patch I get a build error --- In file included from /data/src/blender/blender/extern/carve/include/carve/aabb.hpp:21:0, from /data/src/blender/blender/extern/carve/lib/aabb.cpp:22: /data/src/blender/blender/extern/carve/include/carve/vector.hpp: In function 'void carve::geom3d::sortInDirectionOfRay(const carve::geom3d::Vector&, iter_t, iter_t,...
``` What steps will reproduce the problem? 1. Take the tarball in the attachment, extract the content, correct the Makefile (specifying location of libcarve and Carve) and compile (make). 2....
``` I have posted a licensing inquiry at [email protected]. Sorry about posting this here. Please consider this as a reminder/alert. ``` Original issue reported on code.google.com by `[email protected]` on 26...
``` Line 161, function scoreQuad double scoreQuad(edge_map_t::iterator i, edge_map_t &edge_map) { if (!(*i).second.first || !(*i).second.second) return -1; } basically it should return something on either paths. the result is using...