Removed unused code

master
Marius Kintel 2014-06-26 15:33:22 -04:00
parent 1085d3507a
commit 0a566b3d83
2 changed files with 1 additions and 9 deletions

View File

@ -97,10 +97,6 @@
#include "cgalworker.h"
#include "cgalutils.h"
#else
#include "PolySetEvaluator.h"
#endif // ENABLE_CGAL
#include "boosty.h"

View File

@ -34,10 +34,6 @@ public:
overloaded to provide specialization for e.g. CSG nodes, primitive nodes etc.
Used for human-readable output. */
virtual std::string name() const;
/*! Should return a Geometry instance describing the node. Returns NULL if smth.
goes wrong. This is only called by PolySetEvaluator, to make sure polysets
are inserted into the cache*/
virtual class Geometry *evaluate_geometry(class PolySetEvaluator *) const { return NULL; }
const std::vector<AbstractNode*> &getChildren() const {
return this->children;
@ -88,7 +84,7 @@ public:
LeafNode(const ModuleInstantiation *mi) : AbstractPolyNode(mi) { };
virtual ~LeafNode() { };
virtual Response accept(class State &state, class Visitor &visitor) const;
virtual Geometry *createGeometry() const = 0;
virtual class Geometry *createGeometry() const = 0;
};
std::ostream &operator<<(std::ostream &stream, const AbstractNode &node);