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

src.math.geom2d.circulinear.CirculinearRing2D Maven / Gradle / Ivy

Go to download

JavaGeom - The aim of JavaGeom is to provide methods to easily perform geometric computations, such as intersections of lines, clipping of polygons, transformation shapes, perimeter and area computations... This is a binary & source redistribution of the original, unmodified JavaGeom library originating from: "http://sourceforge.net/projects/geom-java/files/javaGeom/javaGeom%200.11.1/". The purpose of this redistribution is to make the library available to other Maven projects.

The newest version!
/**
 * File: 	CirculinearRing2D.java
 * Project: javaGeom
 * 
 * Distributed under the LGPL License.
 *
 * Created: 11 mai 09
 */
package math.geom2d.circulinear;


/**
 * Interface for circulinear contours which are both bounded and closed.
 * @author dlegland
 * @see GenericCirculinearRing2D
 */
public interface CirculinearRing2D extends CirculinearContour2D {

	public CirculinearDomain2D domain();
	public CirculinearRing2D parallel(double d);
	public CirculinearRing2D reverse();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy