Skip to content
Snippets Groups Projects
Commit b4d9293d authored by Alexander Diewald's avatar Alexander Diewald
Browse files

JFX editors: Make CoordinateCorrections public

parent 79eb880f
No related branches found
No related tags found
1 merge request!81JFX: Base classes
CoordinateCorrections.java f78a936ba49c5fc4daf29237ecb4e86a446316d4 GREEN
CoordinateCorrections.java b9eea17442c6035e666ccfd9af79e38af9458885 YELLOW
LayoutedCircularContentAnchorageVisualBase.java d1521fb71166a78e4e71bf3e2f3fa4b6c571fddb YELLOW
LayoutedCircularDiagramAnchorageVisualBase.java 215d74fb1bc979ee24fd0f31236a187c35f9b48b YELLOW
LayoutedLineLinkVisual.java 6491d2e22722e7cdf5672f0eb4c4a403dea15103 YELLOW
......
......@@ -27,14 +27,15 @@ import javafx.geometry.Dimension2D;
* This class contains corrections of {@link DefaultLayoutConstants}.
*
* @author hoelzl
* @author diewald
*/
class CoordinateCorrections {
public class CoordinateCorrections {
/** The insets of the {@link RectangularContentVisualBase}s. */
/* package */ static final Dimension2D RECTANGLE_INSETS =
public static final Dimension2D RECTANGLE_INSETS =
new Dimension2D(DEFAULT_CONNECTOR_SIZE / 2, DEFAULT_CONNECTOR_SIZE / 2);
/** The default size of {@link ContentAnchorageVisualBase}s. */
/* package */ static final Dimension2D ANCHOR_DIMENSION =
public static final Dimension2D ANCHOR_DIMENSION =
new Dimension2D(DEFAULT_CONNECTOR_SIZE, DEFAULT_CONNECTOR_SIZE);
/** The insets of the {@link ContentAnchorageVisualBase}s. */
/* package */ static final double ANCHOR_INSET = DEFAULT_CONNECTOR_SIZE / 4.5;
public static final double ANCHOR_INSET = DEFAULT_CONNECTOR_SIZE / 4.5;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment