| 6341 | } |
| 6342 | |
| 6343 | void |
| 6344 | Node::getPosition(double *x, |
| 6345 | double *y) const |
| 6346 | { |
| 6347 | NodeGuiIPtr gui = _imp->guiPointer.lock(); |
| 6348 | |
| 6349 | if (gui) { |
| 6350 | gui->getPosition(x, y); |
| 6351 | } else { |
| 6352 | *x = 0.; |
| 6353 | *y = 0.; |
| 6354 | } |
| 6355 | } |
| 6356 | |
| 6357 | void |
| 6358 | Node::setSize(double w, |
no test coverage detected