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

us.ihmc.scs2.definition.robot.urdf.items.URDFGeometry Maven / Gradle / Ivy

package us.ihmc.scs2.definition.robot.urdf.items;

import java.util.List;

import javax.xml.bind.annotation.XmlElement;

/**
 *  ROS Specification link.
 *
 * @author Sylvain Bertrand
 */
public class URDFGeometry implements URDFItem
{
   private URDFBox box;
   private URDFCylinder cylinder;
   private URDFSphere sphere;
   private URDFMesh mesh;

   @XmlElement(name = "box")
   public void setBox(URDFBox box)
   {
      this.box = box;
   }

   @XmlElement(name = "cylinder")
   public void setCylinder(URDFCylinder cylinder)
   {
      this.cylinder = cylinder;
   }

   @XmlElement(name = "sphere")
   public void setSphere(URDFSphere sphere)
   {
      this.sphere = sphere;
   }

   @XmlElement(name = "mesh")
   public void setMesh(URDFMesh mesh)
   {
      this.mesh = mesh;
   }

   public URDFBox getBox()
   {
      return box;
   }

   public URDFCylinder getCylinder()
   {
      return cylinder;
   }

   public URDFSphere getSphere()
   {
      return sphere;
   }

   public URDFMesh getMesh()
   {
      return mesh;
   }

   @Override
   public String getContentAsString()
   {
      return format("[box: %s, cylinder: %s, sphere: %s, mesh: %s]", box, cylinder, sphere, mesh);
   }

   @Override
   public String toString()
   {
      return itemToString();
   }

   @Override
   public List getFilenameHolders()
   {
      return URDFItem.combineItemFilenameHolders(box, cylinder, sphere, mesh);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy