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

com.graphbuilder.geom.Point3d Maven / Gradle / Ivy

Go to download

Implementation of various mathematical curves that define themselves over a set of control points. The API is written in Java. The curves supported are: Bezier, B-Spline, Cardinal Spline, Catmull-Rom Spline, Lagrange, Natural Cubic Spline, and NURBS.

There is a newer version: 1.08
Show newest version
package com.graphbuilder.geom;

/**
The Point3d interface represents a three-dimensional point using double precision.
This interface is useful when writing general geometry algorithms.
*/
public interface Point3d extends Point2d {

	/**
	Sets the location of the point.
	*/
	public void setLocation(double x, double y, double z);

	/**
	Returns the z-coordinate.
	*/
	public double getZ();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy