diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-26 10:47:02 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-26 10:47:02 (GMT) |
commit | 686781d57f4d771b1a25f05a799ebf316eb8a055 (patch) | |
tree | 880c921f356c5104c779b03914864f5af0f3319b /src/node.h | |
parent | 3e64e63b0113a99666ad68aa3e82bb7b80324d9b (diff) |
Minor doc clarification
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 { |