point()
Shape / 2D PrimitivesDescription
Draws a point at the given coordinates.
Syntax
void point(float x, float y)
void point(float x, float y, float z)
Parameters
| Name | Type | Description |
|---|---|---|
| x | float | x-coordinate |
| y | float | y-coordinate |
| z | float | z-coordinate (optional, 3D) |
Returns
voidRelated
Under the Hood
Implementation in Processing.h / Processing.cpp:
Loading...