From 1c2e9b3293058bc119dd85b1f7012c535cab364a Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sat, 24 Aug 2019 08:58:10 +0800 Subject: [PATCH] fix name error --- src/pixel/px_ascii.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pixel/px_ascii.scad b/src/pixel/px_ascii.scad index ab3e90b3..61048cd1 100644 --- a/src/pixel/px_ascii.scad +++ b/src/pixel/px_ascii.scad @@ -975,4 +975,4 @@ function px_ascii(char, center = false, invert = false) = idx = search(char, map_vect)[0] ) assert(!is_undef(idx), "Unsupported character") - bitmap(map_vect[idx][1], center = center, invert = invert); \ No newline at end of file + px_from(map_vect[idx][1], center = center, invert = invert); \ No newline at end of file