package org.ntlab.radishforandroidstudio.framework.gameMain;
import org.ntlab.radishforandroidstudio.framework.physics.Force3D;
import org.ntlab.radishforandroidstudio.framework.physics.PhysicsUtility;
import org.ntlab.radishforandroidstudio.framework.physics.Solid3D;
import org.ntlab.radishforandroidstudio.java3d.Vector3d;
public class ModeOnGround extends Mode {
private Vector3d normal = PhysicsUtility.vertical;
public Force3D getForce(Solid3D body) {
return Force3D.ZERO;
}
public void setNormal(Vector3d normal) {
this.normal = normal;
}
public Vector3d getNormal() {
return normal;
}
}