Inheritance diagram for CanvasBlob::
Public Methods | |
CanvasBlob () | |
CanvasBlob (Image im, double x, double y) | |
CanvasBlob (Image im, double x, double y, Color color) | |
CanvasBlob (Image im, int[] codes, double x, double y) | |
CanvasBlob (Image im, int[] codes, double x, double y, Color color) | |
CanvasBlob (Image im, int[] codes, double x, double y, Color color, float trans, double ccs_scale) | |
void | draw (Graphics g) |
Draw CanvasObject on 'g', using internal CCS values. More... | |
Object | clone () |
Return an identical copy of this CanvasObject. More... | |
boolean | isInside (double x, double y) |
boolean | isNear (double x, double y) |
void | setDimension (double w, double h) |
Resize CanvasObject to width 'w' and height 'h'. More... | |
void | setZoomFactor (double zoomFactor) |
Scale CanvasObject according to 'zoomFactor'. More... | |
void | doPixelFit (double zoomFactor) |
Round internal ICS values to nearest natural number. More... | |
void | doMove (double w, double h) |
Move CanvasObject 'w' positions in x-direction, and 'h' posi- tions in y-direction. More... | |
void | setColor (Color color) |
void | setTransparency (float trans) |
void | setDrawMode (int mode) |
Set current draw-mode. More... | |
void | showMask (boolean b) |
void | showChain (boolean b) |
Vector | getVisualChangeMethods () |
Builds up a list of functions that are to fill a menu for changing the visualization aspects of an object. More... | |
boolean | isInsideCcs (int x, int y) |
To be removed. More... | |
boolean | isNearCcs (int x, int y) |
To be removed. More... | |
void | setDimension (int w, int h) |
void | doMove (int w, int h) |
int | changePoint (int index, int x, int y) |
Protected Methods | |
void | initBlob (Image im, int[] codes, double x, double y, Color color, float trans, double ccs_scale) |
void | setBox () |
Protected Attributes | |
CanvasMask | mask = null |
CanvasChain | chain = null |
boolean | showMask = true |
boolean | showChain = true |
Static Protected Attributes | |
final int | INV_COLOR = 0x00FFFFFF |
|
|
|
|
|
|
|
|
|
|
|
|
|
Draw CanvasObject on 'g', using internal CCS values.
Reimplemented from CanvasObject. |
|
Return an identical copy of this CanvasObject.
Reimplemented from CanvasObject. |
|
|
|
|
|
Resize CanvasObject to width 'w' and height 'h'. Parameters are assumed Image Coordinate System values. Reimplemented from ScribbleObject. |
|
Scale CanvasObject according to 'zoomFactor'. The internal ICS values are taken as base values to calculate the associated CCS values. Reimplemented from CanvasObject. |
|
Round internal ICS values to nearest natural number. Although the ICS values are changed, they are not converted to 'integer' internally. Reimplemented from ScribbleObject. |
|
Move CanvasObject 'w' positions in x-direction, and 'h' posi- tions in y-direction. Parameters are assumed Image Coordinate System values. Reimplemented from ScribbleObject. |
|
Reimplemented from ScribbleFigure. |
|
Reimplemented from ScribbleFigure. |
|
Set current draw-mode.
Reimplemented from CanvasObject. |
|
|
|
|
|
Builds up a list of functions that are to fill a menu for changing the visualization aspects of an object. Classes derived from this one typically add their class-specific methods to their parents' methods by first calling the parent to fill the vector and then add their own. The result is a Vector of CallableMethods. Reimplemented from ScribbleFigure. |
|
To be removed.
Reimplemented from CanvasObject. |
|
To be removed.
Reimplemented from CanvasObject. |
|
Reimplemented from ScribbleObject. |
|
Reimplemented from ScribbleObject. |
|
Reimplemented from ScribbleFigure. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|