Minor doc clarification

syntax_highlighting^2
Marius Kintel 2011-12-26 11:47:02 +01:00
parent 3e64e63b01
commit 686781d57f
2 changed files with 5 additions and 3 deletions

View File

@ -7,8 +7,8 @@
/*!
The task of PolySetEvaluator is to create, keep track of and cache PolySet instances.
All instances of PolySet which are not strictly temporary should be requested through this
class.
All instances of PolySet which are not strictly temporary should be
requested through this class.
*/
/*!

View File

@ -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 {