Vec2 ConvertScrP2MathP(Vec2 _spoint) { Vec2 resultPoint; resultPoint.x = _spoint.x; resultPoint.y = Scene::Height() - _spoint.y; return resultPoint; }