An open API service indexing awesome lists of open source software.

https://github.com/joakin/fill-circle

Small js npm library to paint a circle in a canvas context
https://github.com/joakin/fill-circle

Last synced: about 1 year ago
JSON representation

Small js npm library to paint a circle in a canvas context

Awesome Lists containing this project

README

          

fill-circle
===========

`npm install fill-circle`

Draw a circle in canvas

```js
var fillCircle = require('fill-circle')

// context: Canvas context 2d
// x, y: coordinates of the center of the circle
// r: radius of the circle
fillCircle(context, x, y, r)
```