Class AbstractDrawCircle<I>
- java.lang.Object
-
- science.aist.imaging.core.imageprocessing.draw.AbstractDrawer<I,JavaPoint2D>
-
- science.aist.imaging.core.imageprocessing.draw.circle.AbstractDrawCircle<I>
-
- All Implemented Interfaces:
BiConsumer<ImageWrapper<I>,JavaPoint2D>
- Direct Known Subclasses:
DrawCircle
public abstract class AbstractDrawCircle<I> extends AbstractDrawer<I,JavaPoint2D>
Abstract drawer for drawing a circle
- Since:
- 1.0
- Author:
- Christoph Praschl
-
-
Field Summary
Fields Modifier and Type Field Description protected int
radius
-
Fields inherited from class science.aist.imaging.core.imageprocessing.draw.AbstractDrawer
color, thickness
-
-
Constructor Summary
Constructors Constructor Description AbstractDrawCircle()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
addCirclePoints(JavaPoint2D center, Collection<JavaPoint2D> points, int r)
protected List<JavaPoint2D>
getCircleContour(JavaPoint2D center)
-
Methods inherited from class science.aist.imaging.core.imageprocessing.draw.AbstractDrawer
addOffsetPoints, drawPoints
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiConsumer
accept, andThen
-
-
-
-
Method Detail
-
getCircleContour
protected List<JavaPoint2D> getCircleContour(JavaPoint2D center)
-
addCirclePoints
protected void addCirclePoints(JavaPoint2D center, Collection<JavaPoint2D> points, int r)
-
-