freesewing a library for made-to-measure sewing patterns
# plugin-round
A freesewing plugin to round corners.
## Install
Install this plugin from NPM:
```sh
npm install --save @freesewing/plugin-round
```
## Usage
To load this plugin, add it to your instantiated pattern:
```js
import pattern from '@freesewing/pattern-brian'
import theme from '@freesewing/plugin-theme'
import round from '@freesewing/plugin-round'
pattern.with(theme).with(round);
```
You now have the `round` macro available:
```js
macro("round", {
from: pointA,
to: pointC,
via: pointB,
radius: 20,
render: true,
class: "fabric",
prefix: "example"
});
```
FIXME: Link to documentation
## Where to get help
Questions? Stuck? The [freesewing chat room on Gitter](https://gitter.im/freesewing/freesewing)
is the best place to ask for help.