Brychan Dempsey
b1efb9802d
Leaves only the framework in the compiled clause. Find the removed files in ../examples/misc/
14 lines
241 B
Java
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;
|
|
}
|