UNPKG

doevisualizations

Version:

Data Visualization Library based on RequireJS and D3.js (v4+)

15 lines (13 loc) 307 B
var tan30 = Math.sqrt(1 / 3), tan30_2 = tan30 * 2; export default { draw: function(context, size) { var y = Math.sqrt(size / tan30_2), x = y * tan30; context.moveTo(0, -y); context.lineTo(x, 0); context.lineTo(0, y); context.lineTo(-x, 0); context.closePath(); } };