Transformations
Easel has a number of common parameters that are used to attach sprites, perimeters or colliders to a body at a particular position. This is the order they are applied:
- We begin in shape space. The initial Polygon, for example
Rectangle(width=5, height=1)
, is placed at the origin. Note that the Polygon may have apos
parameter that shifts it from the origin, e.g.Equilateral(pos=@(5, 5), numPoints=3)
means the shape is already beginning at@(5, 5)
. AnImageSprite
orTextSprite
functions the same as aRectangle
with awidth
andheight
derived from the image or text. scale
- aligned to the axes of the shape.angleOffset
- this rotation occurs in shape space.bodyOffset
- now we enter body space.bodyScale
- aligned to the axes of the body.heading
- everything attached to the body is rotated to match its heading, unlessnoRotation=true
.
The sprite is then drawn at the body's position, perhaps with a screenOffset
if provided.
Functions that take transformation parameters
You will see these parameters on functions like:
Not all parameters are used by all functions.
For example, PolygonCollider
does not use screenOffset
as the concept of a "screen" or a "camera" does not exist for the physics engine.