rle.core.board.path
Class CirclePath

java.lang.Object
  extended by rle.core.board.path.Path
      extended by rle.core.board.path.CirclePath

public class CirclePath
extends Path

A path representing a filled or empty circle.


Constructor Summary
CirclePath(RLPoint p, int radius, boolean fill)
           
CirclePath(RLRectangle r, int radius, boolean fill)
           
 
Method Summary
 RLRectangle center()
           
 boolean isFilled()
           
 java.util.List<RLPoint> points()
          Return the steps in this path.
 int radius()
           
 
Methods inherited from class rle.core.board.path.Path
endPoint, fillCircle, fillCircle, fillRect, frameCircle, frameCircle, frameRect, legalPoints, linePath, listPath, things, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CirclePath

public CirclePath(RLPoint p,
                  int radius,
                  boolean fill)

CirclePath

public CirclePath(RLRectangle r,
                  int radius,
                  boolean fill)
Method Detail

center

public RLRectangle center()

radius

public int radius()

isFilled

public boolean isFilled()

points

public java.util.List<RLPoint> points()
Description copied from class: Path
Return the steps in this path.

Specified by:
points in class Path