implement resize feature

This commit is contained in:
2026-03-19 22:20:23 +01:00
parent bd9c6c4b7d
commit e742bbd827
9 changed files with 244 additions and 9 deletions

View File

@@ -38,6 +38,10 @@ public class Selection implements Streamable<Shape> {
notifyListeners();
}
public boolean isEmpty() {
return selectedShapes.isEmpty();
}
public List<Shape> getSelectedShapes() {
return List.copyOf(selectedShapes);
}