View Javadoc

1   package cz.cuni.amis.pogamut.base3d.worldview.object;
2   
3   /**
4    * General interface for objects that are rotary within the world.
5    *
6    * @author Juraj 'Loque' Simlovic
7    */
8   public interface IRotable
9   {
10  	/**
11  	 * Retreives current rotation of the object.
12  	 *
13  	 * @return Current rotation of the object, represented as yaw, roll and
14  	 * pitch.
15  	 */
16  	Rotation getRotation ();
17  
18  }