Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.Spot


    public Spot buildSpot()
    {
        if (this.color == null)
            throw new IllegalStateException("color must be set");
        final Spot spot = new Spot(this.color);
        spot.setConstantAttenuation(this.constantAttenuation);
        spot.setLinearAttenuation(this.linearAttenuation);
        spot.setQuadraticAttenuation(this.quadraticAttenuation);
        spot.setFalloffAngle(this.falloffAngle);
        spot.setFalloffExponent(this.falloffExponent);
        return spot;
    }
View Full Code Here

TOP

Related Classes of de.ailis.jollada.model.Spot

Copyright © 2018 www.massapicom. 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.