(scenenode)
| 112 | |
| 113 | # Branch on primitive nodes |
| 114 | def processPrimitive(scenenode): |
| 115 | if scenenode.isBrush(): |
| 116 | processBrush(scenenode.getBrush()) |
| 117 | elif scenenode.isPatch(): |
| 118 | processPatch(scenenode.getPatch()) |
| 119 | return |
| 120 | |
| 121 | # Traversor class to visit child primitives of entities |
| 122 | class nodeVisitor(dr.SceneNodeVisitor): |
no test coverage detected