Package de.ailis.jollada.model

Examples of de.ailis.jollada.model.Orthographic


                "xMag and yMag must be set when no aspect ratio is given");
        if (this.aspectRatio != null
            && (this.xMag != null && this.yMag != null))
            throw new IllegalStateException(
                "Only xMag or yMag must be set when aspect ratio is given");
        final Orthographic orthographic = new Orthographic(this.zNear, this.zFar);
        orthographic.setAspectRatio(this.aspectRatio);
        orthographic.setXMag(this.xMag);
        orthographic.setYMag(this.yMag);
        return orthographic;
    }
View Full Code Here

TOP

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

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.