MCPcopy Create free account
hub / github.com/MyGUI/mygui / project

Method project

MyGUIEngine/src/msdfgen/core/Projection.cpp:10–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8Projection::Projection(const Vector2 &scale, const Vector2 &translate) : scale(scale), translate(translate) { }
9
10Point2 Projection::project(const Point2 &coord) const {
11 return scale*(coord+translate);
12}
13
14Point2 Projection::unproject(const Point2 &coord) const {
15 return coord/scale-translate;

Callers 1

protectCornersMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected