* @param topRadius
* @param height
*/
public GLUCylinder(Vector3 origin, Color mainColor, Color secondaryColor, float baseRadius, float topRadius, float height) {
super(origin, mainColor, secondaryColor);
cylinder = new Cylinder();
setGLUQuadric(cylinder);
setBaseRadius(baseRadius);
setTopRadius(topRadius);
setHeight(height);
setSlices(DEFAULT_SLICES);