us.ihmc.simulationconstructionset.physics.engine.featherstone.CollisionDerivativeVector 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.physics.engine.featherstone;
public interface CollisionDerivativeVector extends java.io.Serializable
{
public abstract void derivs(double x, double[] y, double[] dydx) throws CollisionDerivativeException;
public abstract boolean isStuck(double[] y);
}