org.jeometry.geom2D.point.Point2DContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeometry-api Show documentation
Show all versions of jeometry-api Show documentation
Jeometry, a Mathematic and Geometry library for Java
package org.jeometry.geom2D.point;
import java.util.List;
import org.jeometry.Jeometry;
import org.jeometry.geom2D.SpatialLocalization2D;
/**
* A container dedicated to the management of {@link Point2D 2D points}. Basically, this interface describes a list of 2D points.
* @author Julien Seinturier - COMEX S.A. - [email protected] - https://github.com/jorigin/jeometry
* @version {@value Jeometry#version}
* @since 1.0.0
*/
public interface Point2DContainer extends List, SpatialLocalization2D {
}