Interface IDrawingObject
-
- All Known Subinterfaces:
IArrow
- All Known Implementing Classes:
Arrow,DrawingObject
public interface IDrawingObjectProject: User: rufenec Date: 11/24/2014 Time: 3:28 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddraw(IDrawContext ctx, DepictorTransformation t)java.awt.geom.Rectangle2DgetBoundingRect()booleanisMovable()booleanisSelected()voidmove(float v, float v1)voidscale(float scaling)voidsetRect(float x, float y, float w, float h)voidsetSelected(boolean b)
-
-
-
Method Detail
-
setSelected
void setSelected(boolean b)
-
isSelected
boolean isSelected()
-
move
void move(float v, float v1)
-
getBoundingRect
java.awt.geom.Rectangle2D getBoundingRect()
-
setRect
void setRect(float x, float y, float w, float h)
-
scale
void scale(float scaling)
-
draw
void draw(IDrawContext ctx, DepictorTransformation t)
-
isMovable
boolean isMovable()
-
-