1 /** 2 * File: CirculinearRing2D.java 3 * Project: javaGeom 4 * 5 * Distributed under the LGPL License. 6 * 7 * Created: 11 mai 09 8 */ 9 package math.geom2d.circulinear; 10 11 12 13 /** 14 * Future interface for circulinear boundary curves which are both bounded 15 * and closed. 16 * @author dlegland 17 * 18 */ 19 public interface CirculinearRing2D 20 extends CirculinearContour2D { 21 22 23 }