![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.timingdiagram.graphic.HexaShape Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.timingdiagram.graphic;
import net.sourceforge.plantuml.klimt.Fashion;
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
import net.sourceforge.plantuml.klimt.shape.UDrawable;
import net.sourceforge.plantuml.klimt.shape.UPolygon;
public class HexaShape implements UDrawable {
private final double width;
private final double height;
private final Fashion context;
private final double delta = 12;
private HexaShape(double width, double height, Fashion context) {
this.width = width;
this.height = height;
this.context = context;
}
public static HexaShape create(double width, double height, Fashion context) {
return new HexaShape(width, height, context);
}
public void drawU(UGraphic ug) {
ug = context.apply(ug);
final UPolygon polygon = new UPolygon();
polygon.addPoint(delta, 0);
polygon.addPoint(width - delta, 0);
polygon.addPoint(width, height / 2);
polygon.addPoint(width - delta, height);
polygon.addPoint(delta, height);
polygon.addPoint(0, height / 2);
ug.draw(polygon);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy