| 318 | } |
| 319 | |
| 320 | void DrawNode::drawPoly(const Vec2* poli, |
| 321 | unsigned int numberOfPoints, |
| 322 | bool closedPolygon, |
| 323 | const Color4F& color, |
| 324 | float thickness) |
| 325 | { |
| 326 | if (thickness <= 0.0f) |
| 327 | { |
| 328 | AXLOGW("{}: thickness <= 0", __FUNCTION__); |
| 329 | return; |
| 330 | } |
| 331 | _drawPoly(poli, numberOfPoints, closedPolygon, color, thickness); |
| 332 | } |
| 333 | |
| 334 | void DrawNode::drawCircle(const Vec2& center, |
| 335 | float radius, |
no outgoing calls