1.1.1 Fix bug with stroke cricle.
This commit is contained in:
parent
d7330c7eb3
commit
4aa1afc0c2
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
author = "Andre von Houck and Ryan Oldenburg"
|
author = "Andre von Houck and Ryan Oldenburg"
|
||||||
description = "Full-featured 2d graphics library for Nim."
|
description = "Full-featured 2d graphics library for Nim."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -258,7 +258,7 @@ proc strokeCircle*(
|
||||||
## Strokes a circle.
|
## Strokes a circle.
|
||||||
var path: Path
|
var path: Path
|
||||||
path.ellipse(center, radius, radius)
|
path.ellipse(center, radius, radius)
|
||||||
image.fillPath(path, color)
|
image.strokePath(path, color, strokeWidth)
|
||||||
|
|
||||||
proc strokeCircle*(
|
proc strokeCircle*(
|
||||||
mask: Mask,
|
mask: Mask,
|
||||||
|
|
Loading…
Reference in a new issue