| 388 | } |
| 389 | |
| 390 | void |
| 391 | VisualNode::setShape(Shape* s) { |
| 392 | if (shape != s) |
| 393 | Shape::deallocate(shape); |
| 394 | shape = s; |
| 395 | shape->computeBoundingBox(); |
| 396 | } |
| 397 | |
| 398 | void |
| 399 | VisualNode::computeShape(const NodeAllocator& na) { |
no test coverage detected