use symlinks

This commit is contained in:
2026-08-28 20:12:44 +02:00
parent e1e88362bd
commit bba4c0e8f5
10 changed files with 9 additions and 965 deletions
-16
View File
@@ -27,20 +27,4 @@ const int sentences[] = int[SENTENCE_COUNT * SENTENCE_MAX_LENGTH](
const int lengths[] = int[SENTENCE_COUNT](
5, 5, 10, 6, 2, 9, 10, 7, 18, 14, 4, 9, 10, 1, 6, 11, 11
);
float write_sentence(vec2 uv, vec2 pos, int n)
{
float d = 0.;
int i;
for (i = 0; i < SENTENCE_MAX_LENGTH; i++) {
if (sentences[n * SENTENCE_MAX_LENGTH + i] == 0) {
return d;
}
d += char_at(uv, pos + vec2(i, 0.), sentences[n * SENTENCE_MAX_LENGTH + i]);
}
return d;
}
#endif