35 lines
802 B
JavaScript
35 lines
802 B
JavaScript
|
/**
|
||
|
* Copyright (c) 2006-2015, JGraph Ltd
|
||
|
* Copyright (c) 2006-2015, Gaudenz Alder
|
||
|
*/
|
||
|
/**
|
||
|
* Class: mxHexagon
|
||
|
*
|
||
|
* Implementation of the hexagon shape.
|
||
|
*
|
||
|
* Constructor: mxHexagon
|
||
|
*
|
||
|
* Constructs a new hexagon shape.
|
||
|
*/
|
||
|
function mxHexagon()
|
||
|
{
|
||
|
mxActor.call(this);
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Extends mxActor.
|
||
|
*/
|
||
|
mxUtils.extend(mxHexagon, mxActor);
|
||
|
|
||
|
/**
|
||
|
* Function: redrawPath
|
||
|
*
|
||
|
* Draws the path for this shape.
|
||
|
*/
|
||
|
mxHexagon.prototype.redrawPath = function(c, x, y, w, h)
|
||
|
{
|
||
|
var arcSize = mxUtils.getValue(this.style, mxConstants.STYLE_ARCSIZE, mxConstants.LINE_ARCSIZE) / 2;
|
||
|
this.addPoints(c, [new mxPoint(0.25 * w, 0), new mxPoint(0.75 * w, 0), new mxPoint(w, 0.5 * h), new mxPoint(0.75 * w, h),
|
||
|
new mxPoint(0.25 * w, h), new mxPoint(0, 0.5 * h)], this.isRounded, arcSize, true);
|
||
|
};
|