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

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

There is a newer version: 3.2.0
Show newest version
import {pi, tau} from "../math";

export default {
  draw: function(context, size) {
    var r = Math.sqrt(size / pi);
    context.moveTo(r, 0);
    context.arc(0, 0, r, 0, tau);
  }
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy