mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Finished new API of GLModel
This commit is contained in:
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user