This commit is contained in:
Yorick
2015-03-10 12:55:02 +00:00
parent 281bd9fa4a
commit a315bdda59
5 changed files with 196 additions and 49 deletions
+38
View File
@@ -48,4 +48,42 @@ public class DrawObject {
{
selected = b;
}
public Point2D getPosition() {
return position;
}
public void setPosition(Point2D position) {
this.position = position;
}
public double getRotation() {
return rotation;
}
public void setRotation(double rotation) {
this.rotation = rotation;
}
public double getScale() {
return scale;
}
public void setScale(double scale) {
this.scale = scale;
}
public Image getImage() {
return image;
}
public void setImage(Image image) {
this.image = image;
}
public boolean isSelected() {
return selected;
}
}