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

us.ihmc.simulationconstructionset.robotdefinition.GroundContactDefinitionFixedFrame Maven / Gradle / Ivy

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

import us.ihmc.euclid.tuple3D.Vector3D;

public class GroundContactDefinitionFixedFrame
{
   String name = null;

   Vector3D offset = 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;
   }

   public String getXMLRepresentation()
   {
      String returnString = "";
      returnString += "\n";
      returnString += "\t" + name + "\n";
      returnString += "\t" + offset + "\n";

      returnString += "\n";

      return returnString;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy