mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
13 lines
154 B
Java
13 lines
154 B
Java
package agg;
|
|
|
|
public class point_type {
|
|
float x, y;
|
|
|
|
public point_type() { }
|
|
|
|
public point_type(float x_, float y_) {
|
|
x = x_;
|
|
y = y_;
|
|
}
|
|
}
|