Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.Light


    public Light build()
    {
        if (this.lightSource == null)
            throw new IllegalStateException("lightSource not set");
        final CommonLightTechnique commonTechnique = new CommonLightTechnique(this.lightSource);
        final Light light = new Light(commonTechnique);
        light.setAsset(this.asset);
        light.setId(this.id);
        light.setName(this.name);
        return light;
    }
View Full Code Here

TOP

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

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.