MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Scale

Method Scale

Source/Engine/Core/Math/Rectangle.cpp:55–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53}
54
55void Rectangle::Scale(float scale)
56{
57 const Float2 toExpand = Size * (scale - 1.0f) * 0.5f;
58 Location -= toExpand * 0.5f;
59 Size += toExpand;
60}
61
62Rectangle Rectangle::MakeScaled(float scale) const
63{

Callers 2

OnPostRenderMethod · 0.45
DrawMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected