@@ -27,43 +27,57 @@ style(PStyle s)
2727
2828//
2929
30- setParent()
31- setPrimary()
32- setPath()
33- setSize(int w , int h )
34- allocate()
30+ public void setParent(PApplet parent )
31+ public void setPrimary(boolean primary )
32+ public void setPath(String path )
33+ public void setSize(int iwidth , int iheight )
34+ protected void allocate()
3535
36- canDraw()
37- beginDraw()
38- endDraw()
39- flush()
36+ public boolean canDraw()
37+ public void beginDraw()
38+ public void endDraw()
39+ public void flush()
4040
41- checkSettings()
42- defaultSettings()
43- reapplySettings()
41+ protected void checkSettings()
42+ protected void defaultSettings()
43+ protected void reapplySettings()
4444
45- hint()
45+ public void hint(int which )
4646
4747 public void beginShape()
4848 public void beginShape(int kind)
49+ public void edge(boolean e)
4950 public void normal(float nx, float ny, float nz)
5051 public void textureMode(int mode)
5152 public void texture(PImage image)
5253 public void vertex(float x, float y)
5354 public void vertex(float x, float y, float z)
5455 public void vertex(float x, float y, float u, float v)
5556 public void vertex(float x, float y, float z, float u, float v)
57+ protected void vertexTexture(float u, float v);
58+ public void breakShape()
59+ public void endShape()
60+ public void endShape(int mode)
61+
62+ protected void bezierVertexCheck();
5663 public void bezierVertex(float x2, float y2,
5764 float x3, float y3,
5865 float x4, float y4)
5966 public void bezierVertex(float x2, float y2, float z2,
6067 float x3, float y3, float z3,
6168 float x4, float y4, float z4)
69+
70+ protected void curveVertexCheck();
6271 public void curveVertex(float x, float y)
6372 public void curveVertex(float x, float y, float z)
64- public void breakShape()
65- public void endShape()
66- public void endShape(int mode)
73+ protected void curveVertexSegment(float x1, float y1,
74+ float x2, float y2,
75+ float x3, float y3,
76+ float x4, float y4)
77+ protected void curveVertexSegment(float x1, float y1, float z1,
78+ float x2, float y2, float z2,
79+ float x3, float y3, float z3,
80+ float x4, float y4, float z4)
6781
6882 public void point(float x, float y)
6983 public void point(float x, float y, float z)
0 commit comments