Interface IDrawingObject
-
- All Known Subinterfaces:
IArrow
- All Known Implementing Classes:
Arrow
,DrawingObject
public interface IDrawingObject
Project: User: rufenec Date: 11/24/2014 Time: 3:28 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
draw(IDrawContext ctx, DepictorTransformation t)
java.awt.geom.Rectangle2D
getBoundingRect()
boolean
isMovable()
boolean
isSelected()
void
move(float v, float v1)
void
scale(float scaling)
void
setRect(float x, float y, float w, float h)
void
setSelected(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()
-
-