44 lines
828 B
JavaScript
44 lines
828 B
JavaScript
|
/**
|
||
|
* Copyright (c) 2006-2015, JGraph Ltd
|
||
|
* Copyright (c) 2006-2015, Gaudenz Alder
|
||
|
*/
|
||
|
/**
|
||
|
* Class: mxTriangle
|
||
|
*
|
||
|
* Implementation of the triangle shape.
|
||
|
*
|
||
|
* Constructor: mxTriangle
|
||
|
*
|
||
|
* Constructs a new triangle shape.
|
||
|
*/
|
||
|
function mxTriangle()
|
||
|
{
|
||
|
mxActor.call(this);
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Extends mxActor.
|
||
|
*/
|
||
|
mxUtils.extend(mxTriangle, mxActor);
|
||
|
|
||
|
/**
|
||
|
* Function: isRoundable
|
||
|
*
|
||
|
* Adds roundable support.
|
||
|
*/
|
||
|
mxTriangle.prototype.isRoundable = function()
|
||
|
{
|
||
|
return true;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Function: redrawPath
|
||
|
*
|
||
|
* Draws the path for this shape.
|
||
|
*/
|
||
|
mxTriangle.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, 0), new mxPoint(w, 0.5 * h), new mxPoint(0, h)], this.isRounded, arcSize, true);
|
||
|
};
|