| 1070 | } |
| 1071 | |
| 1072 | void ScriptingObjects::PathObject::startNewSubPath(var x, var y) |
| 1073 | { |
| 1074 | auto x_ = (float)x; |
| 1075 | auto y_ = (float)y; |
| 1076 | |
| 1077 | p.startNewSubPath(SANITIZED(x_), SANITIZED(y_)); |
| 1078 | } |
| 1079 | |
| 1080 | void ScriptingObjects::PathObject::closeSubPath() |
| 1081 | { |
no outgoing calls
no test coverage detected