createColorShiftingShape();
createResizingShape();
}
private void createRotatingShape() {
GLUSphere sphere = new GLUSphere(new Vector3(8, 63, 0),
Color.DODGER_BLUE.copy(),
Color.DODGER_BLUE.copy().setAlpha(0.25),
1.0F);
sphere.setSlices(8).setStacks(8).setWireframe(true, 3.0F);
ShapeRotate rotate = new ShapeRotate(0.0, Axis.Y);
sphere.addTransform(rotate);
libShapeDraw.addShape(sphere);
rotate.animateStartLoop(360.0, false, 5000);
}