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

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

There is a newer version: 3.2.0
Show newest version
export default {
  draw: function(context, size) {
    var r = Math.sqrt(size / 5) / 2;
    context.moveTo(-3 * r, -r);
    context.lineTo(-r, -r);
    context.lineTo(-r, -3 * r);
    context.lineTo(r, -3 * r);
    context.lineTo(r, -r);
    context.lineTo(3 * r, -r);
    context.lineTo(3 * r, r);
    context.lineTo(r, r);
    context.lineTo(r, 3 * r);
    context.lineTo(-r, 3 * r);
    context.lineTo(-r, r);
    context.lineTo(-3 * r, r);
    context.closePath();
  }
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy