us.ihmc.simulationconstructionset.robotdefinition.ExternalForcePointDefinitionFixedFrame 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.robotdefinition;
import us.ihmc.euclid.tuple3D.Vector3D;
public class ExternalForcePointDefinitionFixedFrame
{
String name = null;
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public Vector3D getOffset()
{
return offset;
}
public void setOffset(Vector3D offset)
{
this.offset = offset;
}
Vector3D offset = null;
public String getXMLRepresentation()
{
String returnString = "";
returnString += "\n";
returnString += "\t" + name + " \n";
returnString += "\t" + offset + " \n";
returnString += " \n";
return returnString;
}
}