Finished new API of GLModel

This commit is contained in:
codeanticode
2010-01-26 20:58:27 +00:00
parent b06456c181
commit 92c70e6feb
2 changed files with 252 additions and 630 deletions
File diff suppressed because it is too large Load Diff
@@ -4,19 +4,13 @@ public class GLModelParameters implements GLConstants, PConstants {
GLModelParameters() {
updateMode = STATIC;
drawMode= POINTS;
pointSize = 1;
lineWidth = 1;
}
GLModelParameters(GLModelParameters src) {
updateMode = src.updateMode;
drawMode= src.drawMode;
pointSize = src.pointSize;
lineWidth = src.lineWidth;
}
public int updateMode;
public int drawMode;
public int pointSize;
public int lineWidth;
}