A Vector2 that stores the temporary bounds center value during calculations by methods in this class.
A Vector2 that stores the temporary center diff values during calculations by methods in this class.
Takes a Body and returns the world coordinates of the bottom-center of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the bottom-left of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the bottom-right of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the center of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the left-center of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the right-center of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the top-center of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the top-left of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Takes a Body and returns the world coordinates of the top-right of its bounds.
Body bounds are updated by Matter each step and factor in scale and rotation. This will return the world coordinate based on the bodies current position and bounds.
The Body to get the position from.
Optionalx: numberOptional horizontal offset to add to the returned coordinates. Default 0.
Optionaly: numberOptional vertical offset to add to the returned coordinates. Default 0.
Parses the given body to get the bounds diff values from it.
They're stored in this class in the temporary properties boundsCenter and centerDiff.
This method is called automatically by all other methods in this class.
The Body to get the bounds position from.
The Body Bounds class contains methods to help you extract the world coordinates from various points around the bounds of a Matter Body. Because Matter bodies are positioned based on their center of mass, and not a dimension based center, you often need to get the bounds coordinates in order to properly align them in the world.
You can access this class via the MatterPhysics class from a Scene, i.e.:
See also the
MatterPhysics.alignBodymethod.