Better warning for unimplemented render()

stl_dim
Marius Kintel 2011-09-02 16:22:01 +02:00
parent a1e452472a
commit 53725500e5
1 changed files with 2 additions and 2 deletions

View File

@ -163,10 +163,10 @@ Response CSGTermEvaluator::visit(State &state, const TransformNode &node)
return ContinueTraversal;
}
// FIXME: Find out how to best call into CGAL from this visitor
// FIXME: If we've got CGAL support, render this node as a CGAL union into a PolySet
Response CSGTermEvaluator::visit(State &state, const RenderNode &node)
{
PRINT("WARNING: Found render() statement but compiled without CGAL support!");
PRINT("WARNING: render() statement not implemented");
if (state.isPostfix()) {
applyToChildren(node, CSGT_UNION);
addToParent(state, node);