/** * Cylinder with perpendicular axis. * Axis direction is therefore not handled * by this interface, only its length * (i.e. height of the cylinder). * * @author Radek Oslejsek, oslejsek@fi.muni.cz * @version 09-10-28 */ public interface Cylinder extends Object3D, Circle { /** * Returns height of the cylinder. * * @return height of the cylinder */ double getHeight(); }