aboutsummaryrefslogtreecommitdiff
path: root/character.c
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2019-05-04 00:57:44 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2019-05-04 00:57:44 +0200
commitf15b53eea4b7054826f79836e207751e86ba1cec (patch)
tree1373166457009a8ca25f3edf66cbdb99987f0585 /character.c
parent099c4db0a3a8e77deb7af7436faec802fe9401de (diff)
downloadAsciiMap-f15b53eea4b7054826f79836e207751e86ba1cec.tar.gz
Reorganised folder structure
Diffstat (limited to 'character.c')
-rw-r--r--character.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/character.c b/character.c
deleted file mode 100644
index 658f0be..0000000
--- a/character.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include "character.h"
-
-const char character_luminance_map [] = {' ', ' ', '.', ',', '`', '-', '~', '"', '*', ':', ';', '<', '!', '/', '?', '%', '&', '=', '$', '#'};
-//const char map[] = {' ', '`', '.', ',', ':', ';', '\"', '+', '#', '@'};
-
-char calc_char(uint8_t _c , uint8_t _min, uint8_t _max)
-{
- float c = (float)(_c) / (_max - _min);
- return character_luminance_map [(int)((sizeof(character_luminance_map)-1) * (c))];
-}