diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-24 22:40:09 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-24 22:40:09 (GMT) |
commit | e1766faeeda4218a453121ec81f8007cc1a1734d (patch) | |
tree | 409e8ae7f7fb2065499cf44b038497b6a5daf689 /src/CSGTermEvaluator.cc | |
parent | ef9d8a853be1a6d6ca48239fcc79106ba374ee21 (diff) |
Initial implementation of improved operator handling. Provides the bulk of work for #304
Diffstat (limited to 'src/CSGTermEvaluator.cc')
-rw-r--r-- | src/CSGTermEvaluator.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CSGTermEvaluator.cc b/src/CSGTermEvaluator.cc index 4624d4c..9fc3147 100644 --- a/src/CSGTermEvaluator.cc +++ b/src/CSGTermEvaluator.cc @@ -57,6 +57,7 @@ void CSGTermEvaluator::applyToChildren(const AbstractNode &node, CSGTermEvaluato } } if (t1 && node.modinst->isHighlight()) { + t1->flag = CSGTerm::FLAG_HIGHLIGHT; this->highlights.push_back(t1); } if (t1 && node.modinst->isBackground()) { @@ -95,6 +96,7 @@ static shared_ptr<CSGTerm> evaluate_csg_term_from_ps(const State &state, stream << node.name() << node.index(); shared_ptr<CSGTerm> t(new CSGTerm(ps, state.matrix(), state.color(), stream.str())); if (modinst->isHighlight()) { + t->flag = CSGTerm::FLAG_HIGHLIGHT; highlights.push_back(t); } if (modinst->isBackground()) { |