25 lines
744 B
Java
25 lines
744 B
Java
package at.fos.ermodel.gui;
|
|
|
|
import javafx.scene.canvas.GraphicsContext;
|
|
import javafx.scene.paint.Color;
|
|
|
|
import java.io.Serial;
|
|
|
|
|
|
public class Graphic_LINE_RSISAS_ES_Elem
|
|
extends Graphic_LINE_Elem {
|
|
@Serial
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public Graphic_LINE_RSISAS_ES_Elem(GraphicsContext gc, double x, double y, double xEnd, double yEnd, byte lineConnectedWithPointAtStart, byte lineConnectedWithPointAtEnd, Graphic_Figure_Elem elemStart, Graphic_Figure_Elem elemEnd, long elementID) {
|
|
super(gc, x, y, xEnd, yEnd, lineConnectedWithPointAtStart, lineConnectedWithPointAtEnd, elemStart, elemEnd, elementID);
|
|
}
|
|
|
|
|
|
protected Color sefdsfdsf45() {
|
|
return C2.ERMISAConnSPEC;
|
|
}
|
|
}
|
|
|
|
|