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

org.metacsp.spatial.geometry.Quaternion Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
package org.metacsp.spatial.geometry;

public class Quaternion {
	
	private double x;
	private double y;
	private double z;
	private double w;
	
	public Quaternion(double x, double y, double z, double w) {
		this.x = x;
		this.y = y;
		this.z = z;
		this.w = w;
	}
	
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy