| 1939 | } |
| 1940 | |
| 1941 | void ScriptingObjects::GraphicsObject::drawVerticalLine(int x, float y1, float y2) |
| 1942 | { |
| 1943 | drawActionHandler.addDrawAction(new ScriptedDrawActions::drawVerticalLine(x, SANITIZED(y1), SANITIZED(y2))); |
| 1944 | } |
| 1945 | |
| 1946 | void ScriptingObjects::GraphicsObject::setOpacity(float alphaValue) |
| 1947 | { |
no test coverage detected