api tweaks to server/client, remove sphere(x, y, z, r), notes and docs

This commit is contained in:
benfry
2005-04-02 01:27:24 +00:00
parent 3e91a856d5
commit 6cfc16d02d
6 changed files with 90 additions and 44 deletions

View File

@@ -97,6 +97,18 @@ public interface PMethods {
//
// also discussed using the modes..
// but when rotating it's gonna make things totally bizarre.
// rectMode(CORNER, CORNERS, CENTER, CENTER_DIAMETER
// box(x, y, z, w, h, d) CORNER
// box(x, y, z, x2, y2, z2) CORNERS
// box(x, y, z, w, h, d) CENTER (but centered around x, y, z)
// box(x, y, z, xr, yr, zr) CENTER_RADIUS
// sphere(x, y, z, r) CENTER
// sphere(x, y, z, r) CORNER draws the ellipse starting int the corner
public void box(float size);
public void box(float w, float h, float d);
@@ -105,7 +117,7 @@ public interface PMethods {
public void sphere(float r);
public void sphere(float x, float y, float z, float r);
//public void sphere(float x, float y, float z, float r);
//