Skip to content

Commit 2821940

Browse files
committed
added attrib*() methods to PApplet
1 parent 8dd0d5c commit 2821940

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

core/src/processing/core/PApplet.java

+15
Original file line numberDiff line numberDiff line change
@@ -8153,6 +8153,21 @@ public void normal(float nx, float ny, float nz) {
81538153
}
81548154

81558155

8156+
public void attribPosition(String name, float x, float y, float z) {
8157+
g.attribPosition(name, x, y, z);
8158+
}
8159+
8160+
8161+
public void attribNormal(String name, float nx, float ny, float nz) {
8162+
g.attribNormal(name, nx, ny, nz);
8163+
}
8164+
8165+
8166+
public void attribColor(String name, int color) {
8167+
g.attribColor(name, color);
8168+
}
8169+
8170+
81568171
public void attrib(String name, float... values) {
81578172
g.attrib(name, values);
81588173
}

0 commit comments

Comments
 (0)