We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b0cad1a + c8916ae commit eb912eaCopy full SHA for eb912ea
src/widget.ts
@@ -681,11 +681,11 @@ class RoughCanvasModel extends CanvasModel {
681
}
682
683
protected fillCircle(x: number, y: number, radius: number) {
684
- this.roughCanvas.circle(x, y, radius, this.getRoughFillStyle());
+ this.roughCanvas.circle(x, y, 2. * radius, this.getRoughFillStyle());
685
686
687
protected strokeCircle(x: number, y: number, radius: number) {
688
- this.roughCanvas.circle(x, y, radius, this.getRoughStrokeStyle());
+ this.roughCanvas.circle(x, y, 2. * radius, this.getRoughStrokeStyle());
689
690
691
protected strokeLine(args: any[], buffers: any) {
0 commit comments