us.ihmc.simulationconstructionset.physics.CollisionShapeWithLink 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;
import us.ihmc.euclid.transform.RigidBodyTransform;
import us.ihmc.simulationconstructionset.Link;
public interface CollisionShapeWithLink extends CollisionShape
{
/**
* The {@link Link} which this shape is attached to.
*/
public abstract Link getLink();
/**
* Transform from shape to link coordinates.
*/
public abstract void getShapeToLink(RigidBodyTransform shapeToLinkToPack);
}