public class HouseShape extends SelectableShape
| Constructor and Description | 
|---|
| HouseShape(int x,
          int y,
          int width)Constructs a house shape. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | contains(java.awt.geom.Point2D p)Tests whether this item contains a given point. | 
| void | draw(java.awt.Graphics2D g2)Draws this item. | 
| void | translate(int dx,
         int dy)Translates this item by a given amount. | 
drawSelection, isSelected, setSelectedpublic HouseShape(int x, int y, int width)
x - the left of the bounding rectangley - the top of the bounding rectanglewidth - the width of the bounding rectanglepublic void draw(java.awt.Graphics2D g2)
SceneShapeg2 - the graphics contextpublic boolean contains(java.awt.geom.Point2D p)
SceneShapep - a pointpublic void translate(int dx, int dy)
SceneShapedx - the amount to translate in x-directiondy - the amount to translate in y-direction