Global

Members

myHull :Array.<p5.Vector>

Array storing a list of randomly generated points
Type:
  • Array.<p5.Vector>
Source:

myPoints :Array.<p5.Vector>

Array storing a list of randomly generated points
Type:
  • Array.<p5.Vector>
Source:

numPoints :Integer

Number of points to be bound by the generated convex hull
Type:
  • Integer
Source:

pointRadius :Integer

Size of the points drawn on the canvas
Type:
  • Integer
Source:

xBuffer :Integer

Variable that store how far away from the side edges new points can spawn
Type:
  • Integer
Source:

yBuffer :Integer

Variable that store how far away from the top and bottom edges new points can spawn
Type:
  • Integer
Source:

Methods

crossZ(a, b, o) → {Float}

Finds the z component of the cross product of three vectors
Parameters:
Name Type Description
a p5.Vector
b p5.Vector
o p5.Vector
Source:
Returns:
Type
Float

draw()

p5.js draw function, is run every frame to create the desired animation
Source:

drawHull(hullArray, colour)

Draws a convex hull with a given colour
Parameters:
Name Type Description
hullArray Array.<p5.Vector> Array of points that amke up the verticies of the hull.
colour Integer Value of the hue of the given hull from 0 to 100
Source:

drawPoints(verticies)

Draws a set of points on the screen
Parameters:
Name Type Description
verticies Array.<p5.Vector> Array of points
Source:

grahamScan()

The graham scan algorithm
Source:

setup()

p5.js setup function, creates canvas.
Source:

Documentation generated by JSDoc 3.6.3 on Sun Jun 05 2022 20:04:15 GMT+0100 (BST)