| 1934 | } |
| 1935 | |
| 1936 | void ScriptingObjects::GraphicsObject::drawHorizontalLine(int y, float x1, float x2) |
| 1937 | { |
| 1938 | drawActionHandler.addDrawAction(new ScriptedDrawActions::drawHorizontalLine(y, SANITIZED(x1), SANITIZED(x2))); |
| 1939 | } |
| 1940 | |
| 1941 | void ScriptingObjects::GraphicsObject::drawVerticalLine(int x, float y1, float y2) |
| 1942 | { |
no test coverage detected