| 9467 | |
| 9468 | |
| 9469 | Tree_p Widget::lineTo(Tree_p self, Real_p x, Real_p y, Real_p z) |
| 9470 | // ---------------------------------------------------------------------------- |
| 9471 | // Add a 'lineTo' to the current path |
| 9472 | // ---------------------------------------------------------------------------- |
| 9473 | { |
| 9474 | if (!path) |
| 9475 | { |
| 9476 | Ooops("No path for $1", self); |
| 9477 | return XL::xl_false; |
| 9478 | } |
| 9479 | path->lineTo(Point3(x,y,z)); |
| 9480 | path->AddControl(self, true, x, y, z); |
| 9481 | return XL::xl_true; |
| 9482 | } |
| 9483 | |
| 9484 | |
| 9485 | Tree_p Widget::curveTo(Tree_p self, |
no test coverage detected