| 569 | } |
| 570 | |
| 571 | void ofTriangle(float x1, float y1, float x2, float y2, float x3, float y3) |
| 572 | { |
| 573 | ofBeginShape(); |
| 574 | ofVertex(x1, y1); |
| 575 | ofVertex(x2, y2); |
| 576 | ofVertex(x3, y3); |
| 577 | ofVertex(x1, y1); |
| 578 | ofEndShape(); |
| 579 | } |
| 580 | |
| 581 | float ofRectangle::getMinX() const |
| 582 | { |
no test coverage detected