Examples of PartialDisk


Examples of org.lwjgl.util.glu.PartialDisk

     * @param innerRadius
     * @param outerRadius
     */
    public GLUPartialDisk(Vector3 origin, Color mainColor, Color secondaryColor, float innerRadius, float outerRadius, float startAngle, float sweepAngle) {
        super(origin, mainColor, secondaryColor);
        partialDisk = new PartialDisk();
        setGLUQuadric(partialDisk);
        setInnerRadius(innerRadius);
        setOuterRadius(outerRadius);
        setStartAngle(startAngle);
        setSweepAngle(sweepAngle);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.