All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.symbol.triangle.js Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
var sqrt3 = Math.sqrt(3);

export default {
  draw: function(context, size) {
    var y = -Math.sqrt(size / (sqrt3 * 3));
    context.moveTo(0, y * 2);
    context.lineTo(-sqrt3 * y, -y);
    context.lineTo(sqrt3 * y, -y);
    context.closePath();
  }
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy