Constructor
new Word(word, pos, width, height, strokeWeightopt, strokeColopt)
Constructs a new instance of the Word to be guessed
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
word |
string | The word | ||
pos |
p5.Vector | The top left position in pixels | ||
width |
number | The width in pixels | ||
height |
number | The height in pixels | ||
strokeWeight |
number |
<optional> |
1 | The stroke weight in pixels |
strokeCol |
number |
<optional> |
255 | The stroke colour |
Methods
calculateLocations()
Calculates the locations of key points to be drawn in the future
draw()
Draw the word
isComplete() → {boolean}
Determines if all the characters in the word have been revealed
Returns:
True if complete, False otherwise.
- Type
- boolean
pickLetter(letter) → {boolean}
Tests to see if a given letter is in the word and sets the show flag to
true so that that character is displayed at the bottom of the canvas
Parameters:
Name | Type | Description |
---|---|---|
letter |
string | The letter |
Returns:
True if the letter is in the word
- Type
- boolean
resize(pos, width, height)
Resizes the word interface
Parameters:
Name | Type | Description |
---|---|---|
pos |
p5.Vector | The position of the top left in pixels |
width |
number | The width in pixels |
height |
number | The height in pixels |