mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
16 lines
209 B
Java
16 lines
209 B
Java
package agg;
|
|
|
|
|
|
public class vertex_type {
|
|
float x, y;
|
|
int cmd; // un
|
|
|
|
public vertex_type() { }
|
|
|
|
public vertex_type(double x_, double y_, unsigned cmd_) {
|
|
x = x_;
|
|
y = y_;
|
|
cmd = cmd_;
|
|
}
|
|
}
|