Reference×
Reference
- [] (array access)
- = (assign)
- catch
- class
- , (comma)
- // (comment)
- {} (curly braces)
- /** */ (doc comment)
- . (dot)
- draw()
- exit()
- extends
- false
- final
- implements
- import
- loop()
- /* */ (multiline comment)
- new
- noLoop()
- null
- () (parentheses)
- popStyle()
- pop()
- private
- public
- pushStyle()
- push()
- redraw()
- return
- ; (semicolon)
- setLocation()
- setResizable()
- setTitle()
- setup()
- static
- super
- this
- thread()
- true
- try
- void
Name
beginShape()
Class
PShape
Description
This method is used to start 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.beginShape()
sh.beginShape(kind)
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.