* @param angle the angle to be converted
* @return the 2D directional vector */
/*-------------------------------------------------------------------*/
public static Vector2f degreesToVector2f(float angle)
{
return new Vector2f((float)Math.cos(Math.toRadians(angle)), (float)Math.sin(Math.toRadians(angle)));
}