JavaECS/examples/misc/Vec2D.java
Brychan Dempsey b1efb9802d Removed implementation classes
Leaves only the framework in the compiled clause.
Find the removed files in ../examples/misc/
2021-06-08 14:47:10 +12:00

14 lines
241 B
Java

package nz.ac.massey.javaecs;
public class Vec2D {
public Vec2D(){}
public Vec2D(double x, double y, int z){
this.x = x;
this.y = y;
this.z = z;
}
double x = 0.0;
double y = 0.0;
int z = 0;
}