Class: Tile

World.Tile(lines, pos)

Tile class that stores a list of lines and encapsulates the position and drawing of these lines. The drawing is done through the use of a portable graphics object image. This is expensive to create so is not generated in the constructor. The image is lazily created when a call to draw is made or if getPG is called, whichever happens first.

Constructor

new Tile(lines, pos)

constructor for the Tile
Parameters:
Name Type Description
lines Array.<World.Line> The lines in the tile
pos p5.Vector The position of the tile
Source:
See:

Classes

Proxy

Methods

copy() → {World.Tile}

Copies the all of the lines in the tile object and returns a new tile.
Source:
Returns:
- The new tile
Type
World.Tile

draw()

Draws the tile. If the tile image hasn't been created it is lazily generated before it is drawn.
Source:

generatePG()

Generate the portable graphics image for the tile.
Source:

getLines() → {Array.<World.Line>}

Get the lines stored in the tile
Source:
Returns:
- The lines stored in the tile
Type
Array.<World.Line>

getName() → {string}

get the name of the tile
Source:
Returns:
- name of the tile
Type
string

getPG() → {p5.Graphics}

Gets the current image of the tile. If the tile image hasn't been created then it will be lazily generated before being returned.
Source:
Returns:
- The tile image
Type
p5.Graphics

setLines(lines)

Sets the lines in the tile
Parameters:
Name Type Description
lines Array.<World.Line> The lines to store in the tile
Source:

setName(name)

Set the name of the tile
Parameters:
Name Type Description
name string name of the tile
Source:

setPos(newPos)

Change the position of the tile
Parameters:
Name Type Description
newPos p5.Vector The new position of the tile
Source:

Documentation generated by JSDoc 4.0.2 on Fri Aug 30 2024 16:12:55 GMT-0600 (Mountain Daylight Time)