| 758 | } |
| 759 | |
| 760 | void DrawNode::drawTriangle(const Vec2* vertices3, const Color4F& color) |
| 761 | { |
| 762 | Vec2 vertices[3] = {vertices3[0], vertices3[1], vertices3[2]}; |
| 763 | _drawTriangle(vertices, Color4F::TRANSPARENT, color, false, 0.0f); |
| 764 | } |
| 765 | |
| 766 | void DrawNode::drawTriangle(const Vec2& p1, const Vec2& p2, const Vec2& p3, const Color4F& color) |
| 767 | { |
no outgoing calls