All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.simulationconstructionset.simulatedSensors.WrenchCalculatorInterface Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
package us.ihmc.simulationconstructionset.simulatedSensors;

import org.ejml.data.DMatrixRMaj;

import us.ihmc.euclid.transform.RigidBodyTransform;
import us.ihmc.simulationconstructionset.Joint;

public interface WrenchCalculatorInterface
{
   String getName();

   void getTransformToParentJoint(RigidBodyTransform transformToPack);

   void calculate();

   DMatrixRMaj getWrench();

   Joint getJoint();

   void corruptWrenchElement(int row, double value);

   void setDoWrenchCorruption(boolean value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy