JavaECS/examples/misc/RidgidBody.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

19 lines
402 B
Java

package nz.ac.massey.javaecs;
public class RidgidBody {
public RidgidBody(){}
public RidgidBody(double xdot, double ydot, double xAcc, double yAcc){
this.xdot = xdot;
this.ydot = ydot;
this.xAcc = xAcc;
this.yAcc = yAcc;
}
// Velocities
double xdot = 0.0;
double ydot = 0.0;
// accelerations
double xAcc = 0.0;
double yAcc = 0.0;
}