Package eu.bandm.tools.d2d2.base
Class SyntaxGraph.SizeInfo
java.lang.Object
eu.bandm.tools.d2d2.base.SyntaxGraph.SizeInfo
- Enclosing class:
- SyntaxGraph
Represents the result of a layout sub-process
as a TeX-like box model with three length values. These values are
used by the combinator code for calculating the shift values.
-
Field Summary
Modifier and TypeFieldDescription(package private) final int
Height in device oordinates ("pixel") of the area of the symbol above its nominal entry height (as given bySyntaxGraph.y
).(package private) final int
Depth in device oordinates ("pixel") of the area of the symbol below its nominal entry height (as given bySyntaxGraph.y
).(package private) final int
Width in device oordinates ("pixel") of the area of the symbol. -
Constructor Summary
-
Method Summary
-
Field Details
-
above
final int aboveHeight in device oordinates ("pixel") of the area of the symbol above its nominal entry height (as given bySyntaxGraph.y
). -
below
final int belowDepth in device oordinates ("pixel") of the area of the symbol below its nominal entry height (as given bySyntaxGraph.y
). -
width
final int widthWidth in device oordinates ("pixel") of the area of the symbol.
-
-
Constructor Details
-
SizeInfo
SizeInfo(int above, int below, int width) Only constructor
-