001/******************************************************************************* 002 * This software is provided as a supplement to the authors' textbooks on digital 003 * image processing published by Springer-Verlag in various languages and editions. 004 * Permission to use and distribute this software is granted under the BSD 2-Clause 005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause). 006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved. 007 * Visit https://imagingbook.com for additional details. 008 ******************************************************************************/ 009package imagingbook.common.geometry.delaunay; 010 011import imagingbook.common.geometry.basic.Pnt2d; 012import imagingbook.common.geometry.shape.ShapeProducer; 013 014import java.awt.Shape; 015import java.awt.geom.Path2D; 016 017/** 018 * Interface specifying a 2D triangle. 019 */ 020public interface Triangle extends ShapeProducer { // TODO: better integrate with other 2D primitives 021 022 /** 023 * Returns an array of points used by the triangulation in the order of their insertion. 024 * 025 * @return an array of points 026 */ 027 public Pnt2d[] getPoints(); 028 029 @Override 030 public default Shape getShape(double scale) { 031 Path2D path = new Path2D.Double(); 032 Pnt2d[] pts = this.getPoints(); 033 Pnt2d a = pts[0]; 034 Pnt2d b = pts[1]; 035 Pnt2d c = pts[2]; 036 path.moveTo(a.getX(), a.getY()); 037 path.lineTo(b.getX(), b.getY()); 038 path.lineTo(c.getX(), c.getY()); 039// path.lineTo(a.getX(), a.getY()); 040 path.closePath(); 041 return path; 042 } 043 044} 045