Constructor. Take the Atlas' name and image filepath, the image's dimensions, and the number of rows and columns in the image's grid
the name of the Atlas, constrained to the three supported use cases
the file path of the Atlas' image
the pixel width of the Atlas' image
the pixel height of the Atlas' image
the number of texture cells along the Atlas' x dimension
the number of texture cells along the Atlas' y dimension
Given a set of normalized vertex texture coordinates retrieved from an Entity's Model Component (specified by Geometry), as well as the Atlas row and column to sample from retrieved from an Entity's Texture Component, calculate the real Texture Coordinate value to pack into the Entity's vertex array
Implements half pixel correction to avoid texture bleeding
the normalized texture coordinates as associated with a given vertex (Geometry texCoords)
the Atlas column to sample from
the Atlas row to sample from
the number of columns to sample from within the Atlas (Texture columnSpan)
the number of rows to sample from within the atlas (Texture rowSpan)
the calculated and corrected texture coordinates for the vertex
Texture Atlas representation; a uniform grid composed of individual textures which Entities may sample from with Texture Components
One TextureAtlas may be configured for each EntityManager (World, UI, Text), providing texture sampling space for each Entity type
Images used in TextureAtlas configurations must have power-of-2 dimensions
NB: the Game (currently) configures a default TextureAtlas for Font, expecting a monospace Font texture at
./src/res/font.png