This reference is for Processing 2.0+. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Javadoc.
Class | PShape |
Name |
endShape() |
Examples |
PShape s; // The PShape object
void setup() {
size(100, 100, P2D);
s = createShape();
s.beginShape();
s.fill(0, 0, 255);
s.noStroke();
s.vertex(0, 0);
s.vertex(0, 50);
s.vertex(50, 0);
s.endShape();
}
void draw() {
shape(s, 25, 25);
}
|
Description |
This method is used to complete a custom shape created with the createShape() function. It's always and only used with createShape().
|
Syntax | sh.endShape()
sh.endShape(mode) |
Parameters |
sh |
PShape: any variable of type PShape |
|
Returns | void |
Related | beginShape()
|
Updated on May 19, 2014 05:30:03pm PDT