Skip to content

Commit c24fcfb

Browse files
committed
Fix
1 parent e573569 commit c24fcfb

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

.idea/workspace.xml

+17-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.java

-5
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
import java.awt.event.MouseAdapter;
1717
import java.awt.event.MouseEvent;
1818

19-
import static java.lang.Math.abs;
20-
2119

2220
public class App {
2321
//region VARIABLES
@@ -32,7 +30,6 @@ public class App {
3230
Polygon polygon = new Polygon();
3331
private int selection = 1;
3432
private int dotSpacing = 5;
35-
private boolean isHorizontal = true;
3633
private boolean allowAlignment = false;
3734
private final SaveImageService saveImageService = new SaveImageService();
3835
//endregion
@@ -51,8 +48,6 @@ public App(int width, int height) {
5148
polygonRasterizer = new PolygonRasterizer(lineRasterizer);
5249

5350
canvas = new JPanel() {
54-
private static final long serialVersionUID = 1L;
55-
5651
@Override
5752
public void paintComponent(Graphics g) {
5853
super.paintComponent(g);

src/Rasterize/LineRasterizer.java

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
import Model.Line;
44
import Services.Interface.IRBIService;
55

6-
import java.awt.*;
7-
86
public abstract class LineRasterizer {
97
protected IRBIService RBIRaster;
108

0 commit comments

Comments
 (0)