Reference+
Name
endShape()
Class
PShape
Description
This method is used to complete a custom shape created with the createShape() function. It's always and only used with createShape().
Examples
PShape s; // The PShape object void setup() { size(100, 100); 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); }
Syntax
sh.endShape()
sh.endShape(mode)
Parameters
sh
(PShape)
any variable of type PShape
Return
void
Related
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.