From 6b5f848d36939ec37c8d72f0928aeeb8382db88f Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Fri, 6 Aug 2021 16:44:53 -0500 Subject: [PATCH] feedback --- README.md | 8 ++++---- examples/text_spans.nim | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 261bf71..d7434af 100644 --- a/README.md +++ b/README.md @@ -136,11 +136,11 @@ proc newFont(typeface: Typeface, size: float32, color: ColorRGBA): Font = let spans = @[ newSpan("verb [with object] ", - typeface.newFont(12, rgba(200, 200, 200, 255))), - newSpan("strallow\n", typeface.newFont(36, rgba(0, 0, 0, 255))), - newSpan("\nstral·low\n", typeface.newFont(13, rgba(0, 127, 244, 255))), + newFont(typeface, 12, rgba(200, 200, 200, 255))), + newSpan("strallow\n", newFont(typeface, 36, rgba(0, 0, 0, 255))), + newSpan("\nstral·low\n", newFont(typeface, 13, rgba(0, 127, 244, 255))), newSpan("\n1. free (something) from restrictive restrictions \"the regulations are intended to strallow changes in public policy\" ", - typeface.newFont(14, rgba(80, 80, 80, 255))) + newFont(typeface, 14, rgba(80, 80, 80, 255))) ] image.fillText(typeset(spans, bounds = vec2(180, 180)), vec2(10, 10)) diff --git a/examples/text_spans.nim b/examples/text_spans.nim index efcaeef..e69d952 100644 --- a/examples/text_spans.nim +++ b/examples/text_spans.nim @@ -12,11 +12,11 @@ proc newFont(typeface: Typeface, size: float32, color: ColorRGBA): Font = let spans = @[ newSpan("verb [with object] ", - typeface.newFont(12, rgba(200, 200, 200, 255))), - newSpan("strallow\n", typeface.newFont(36, rgba(0, 0, 0, 255))), - newSpan("\nstral·low\n", typeface.newFont(13, rgba(0, 127, 244, 255))), + newFont(typeface, 12, rgba(200, 200, 200, 255))), + newSpan("strallow\n", newFont(typeface, 36, rgba(0, 0, 0, 255))), + newSpan("\nstral·low\n", newFont(typeface, 13, rgba(0, 127, 244, 255))), newSpan("\n1. free (something) from restrictive restrictions \"the regulations are intended to strallow changes in public policy\" ", - typeface.newFont(14, rgba(80, 80, 80, 255))) + newFont(typeface, 14, rgba(80, 80, 80, 255))) ] image.fillText(typeset(spans, bounds = vec2(180, 180)), vec2(10, 10))