1
0
Fork 0
SVEN/QR/src/BorderInformation.java

12 lines
299 B
Java

public class BorderInformation {
// Randstärke in Pixeln
public float BorderWidth;
// Erstes schwarzes Pixel in der linken oberen Ecke
public Pair firstBlackPixel;
public BorderInformation(float width, Pair firstBlack) {
BorderWidth = width;
firstBlackPixel = firstBlack;
}
}