us.ihmc.simulationconstructionset.MovingGroundContactModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simulation-construction-set
Show all versions of simulation-construction-set
Simulation Construction Set
package us.ihmc.simulationconstructionset;
import us.ihmc.jMonkeyEngineToolkit.GroundProfile3D;
public interface MovingGroundContactModel
{
// public abstract void initGroundContact();
public abstract void doGroundContact();
public abstract void setGroundProfile(MovingGroundProfile profile);
public abstract GroundProfile3D getGroundProfile3D();
}