cz.cuni.jagrlib.iface
Interface FloodFillRender

All Superinterfaces:
Property, Render
All Known Implementing Classes:
FloodFillPoint

public interface FloodFillRender
extends Render

Rendering interface for flood-fill algorithms.

Since:
0.01
See Also:
FloodFillRender.java

Field Summary
static java.lang.String CONTINUITY
          Continuity-degree property (int: 4 or 8).
 
Fields inherited from interface cz.cuni.jagrlib.iface.Render
LINE_CAP, LINE_CAP_BUTT, LINE_CAP_ROUND, LINE_CAP_SQUARE, LINE_JOIN, LINE_JOIN_BEVEL, LINE_JOIN_DISJOINT, LINE_JOIN_MITER, LINE_JOIN_OVERLAP, LINE_JOIN_ROUND, LINE_WIDTH, PROJECTION, RENDER_STYLE, RENDER_STYLE_FLAT, RENDER_STYLE_GOURAUD, RENDER_STYLE_LINE, RENDER_STYLE_PHONG, RENDER_STYLE_TEXTURE
 
Fields inherited from interface cz.cuni.jagrlib.iface.Property
LOGGING, STATISTICS, TEXT_DESCRIPTION
 
Method Summary
 void floodFill(int x, int y)
          Fills the continuous 2D area defined by the starting point [ x, y ], using callback border BitMask.
 
Methods inherited from interface cz.cuni.jagrlib.iface.Property
commit, get, set
 

Field Detail

CONTINUITY

static final java.lang.String CONTINUITY
Continuity-degree property (int: 4 or 8).

See Also:
Constant Field Values
Method Detail

floodFill

void floodFill(int x,
               int y)
Fills the continuous 2D area defined by the starting point [ x, y ], using callback border BitMask. Usess either 4-continuous or 8-continuous area.

Parameters:
x - Seed's X coordinate.
y - Seed's Y coordinate.