| 103 | } |
| 104 | |
| 105 | bool ScriptBrushNode::empty() const |
| 106 | { |
| 107 | IBrushNodePtr brushNode = std::dynamic_pointer_cast<IBrushNode>(_node.lock()); |
| 108 | if (brushNode == NULL) return true; |
| 109 | |
| 110 | return brushNode->getIBrush().empty(); |
| 111 | } |
| 112 | |
| 113 | bool ScriptBrushNode::hasContributingFaces() const |
| 114 | { |
no outgoing calls
no test coverage detected