From fa23c49e024a0b18abcdf62d927221644d538a21 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Tue, 7 Sep 2021 19:14:00 -0500 Subject: [PATCH 1/3] f --- bindings/bindings.nim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bindings/bindings.nim b/bindings/bindings.nim index ba47d58..9b39a86 100644 --- a/bindings/bindings.nim +++ b/bindings/bindings.nim @@ -17,9 +17,7 @@ type values*: array[9, float32] proc matrix3*(): Matrix3 = - result.values[0] = 1 - result.values[4] = 1 - result.values[8] = 1 + cast[Matrix3](mat3()) proc mul*(a, b: Matrix3): Matrix3 = cast[Matrix3](cast[Mat3](a) * cast[Mat3](b)) From 4147663b4a839b570732290fc26796e0877ac70f Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Tue, 7 Sep 2021 20:35:16 -0500 Subject: [PATCH 2/3] matrix3 inverse --- bindings/bindings.nim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bindings/bindings.nim b/bindings/bindings.nim index 9b39a86..89eb8b7 100644 --- a/bindings/bindings.nim +++ b/bindings/bindings.nim @@ -31,6 +31,9 @@ proc rotate*(angle: float32): Matrix3 = proc scale*(x, y: float32): Matrix3 = cast[Matrix3](scale(vec2(x, y))) +proc inverse*(m: Matrix3): Matrix3 = + cast[Matrix3](inverse(cast[Mat3](m))) + proc parseColor*(s: string): Color {.raises: [PixieError]} = try: result = parseHtmlColor(s) @@ -313,6 +316,7 @@ exportProcs: translate(float32, float32) rotate(float32) scale(float32, float32) + inverse(Matrix3) writeFiles("bindings/generated", "pixie") From 234ea08e3d68d39a4aa39770fdc4b7a09ab588d8 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Tue, 7 Sep 2021 21:13:36 -0500 Subject: [PATCH 3/3] small gen_readme stuff --- examples/shadow.nim | 13 ++++--------- tools/gen_readme.nim | 2 +- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/examples/shadow.nim b/examples/shadow.nim index a4ed263..1e4d372 100644 --- a/examples/shadow.nim +++ b/examples/shadow.nim @@ -3,16 +3,11 @@ import pixie let image = newImage(200, 200) image.fill(rgba(255, 255, 255, 255)) +let path = newPath() +path.polygon(vec2(100, 100), 70, sides = 8) + let polygonImage = newImage(200, 200) - -let ctx = newContext(polygonImage) -ctx.fillStyle = rgba(255, 255, 255, 255) - -ctx.fillPolygon( - vec2(100, 100), - 70, - sides = 8 -) +polygonImage.fillPath(path, rgba(255, 255, 255, 255)) let shadow = polygonImage.shadow( offset = vec2(2, 2), diff --git a/tools/gen_readme.nim b/tools/gen_readme.nim index 57360cd..bb69bbf 100644 --- a/tools/gen_readme.nim +++ b/tools/gen_readme.nim @@ -26,7 +26,7 @@ var exampleFiles = [ ] for path in exampleFiles: - discard execCmd("nim c -r -d:danger " & path) + discard execCmd("nim c -r " & path) let code = readFile(path) let innerCode = code.cutBetween("image.fill(rgba(255, 255, 255, 255))", "image.writeFile") if innerCode != "":