All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oscim.utils.math.Vec3 Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.21.0
Show newest version
package org.oscim.utils.math;

public class Vec3 {
    public double x, y, z;

    public Vec3() {
    }

    public Vec3(double x, double y, double z) {
        this.x = x;
        this.y = y;
        this.z = z;
    }

    public void set(double x, double y, double z) {
        this.x = x;
        this.y = y;
        this.z = z;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy