Package cc.plural.math

Examples of cc.plural.math.Vector3f


    public Vector3f min;

    public Vector3f max;

    public BoundingVolume() {
        min = new Vector3f();
        max = new Vector3f();
    }
View Full Code Here


    public Vector3f scale;
    public Matrix3f rotation;
    public float[] mat4x4;

    public Camera() {
        translation = new Vector3f();
        scale = new Vector3f(1f, 1f, 1f);
        rotation = Matrix3f.identity();

        mat4x4 = new float[16];

        get(mat4x4);
View Full Code Here

TOP

Related Classes of cc.plural.math.Vector3f

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.