com.mxgraph.shape.mxRhombusShape Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AptSpringProcessor Show documentation
Show all versions of AptSpringProcessor Show documentation
This project contains the apt processor that implements all the checks enumerated in @Verify. It is a self contained, and
shaded jar.
The newest version!
package com.mxgraph.shape;
import java.awt.Polygon;
import java.awt.Rectangle;
import java.awt.Shape;
import com.mxgraph.canvas.mxGraphics2DCanvas;
import com.mxgraph.view.mxCellState;
public class mxRhombusShape extends mxBasicShape
{
/**
*
*/
public Shape createShape(mxGraphics2DCanvas canvas, mxCellState state)
{
Rectangle temp = state.getRectangle();
int x = temp.x;
int y = temp.y;
int w = temp.width;
int h = temp.height;
int halfWidth = w / 2;
int halfHeight = h / 2;
Polygon rhombus = new Polygon();
rhombus.addPoint(x + halfWidth, y);
rhombus.addPoint(x + w, y + halfHeight);
rhombus.addPoint(x + halfWidth, y + h);
rhombus.addPoint(x, y + halfHeight);
return rhombus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy