diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-26 15:38:11 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-26 15:38:11 (GMT) |
commit | 0be212e75d73644b1cff8291a4b6a6fe0098b942 (patch) | |
tree | 05bfeea810ad680d3cfbfa385fe694cb7dc0840d /src/node.h | |
parent | 04f8d5863b5797f25c226b970dba8e87abb836c8 (diff) | |
parent | 4ff2d1af446c1f276c644b12e6ec4cc6db0b6d65 (diff) |
Merge branch 'master' into threading
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -35,7 +35,9 @@ 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 PolySet of the given geometry. Returns NULL if smth. goes wrong */ + /*! Should return a PolySet of the given geometry. Returns NULL if smth. goes wrong. + This is only called by PolySetEvaluator, to make sure polysets are inserted into + the cache*/ virtual class PolySet *evaluate_polyset(class PolySetEvaluator *) const { return NULL; } const std::vector<AbstractNode*> &getChildren() const { |