Commit b4cd43eb87b20fbfc2b19009823880a047323850

henry 2001-11-05T21:01:13

Removed the stuff about restricted sets of glyphs. It happens for free now:)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/README.txt b/README.txt
index c735fdb..a0831b8 100755
--- a/README.txt
+++ b/README.txt
@@ -59,14 +59,6 @@ When is the best time to construct the glyphList? After the call to Size(x)
 is the earliest but what happens if the client doesn't set the char size?
 Define a default size, check if glyphlist is valid in render function, if
 not call size with default size.
- 
-Need a way to restrict the glyphs to a custom set. eg an app only needs
-numbers so we should only create a glyphList of the number characters.
-This will enable us to have a restricted set of HIGH quality glyphs.
-have 2 range functions. One that takes an upper and lower bounds
-font.Range( 32, 127);
-and one that takes a string of characters.
-font.Range( "only process these glyphs");   "ceghlnoprsty"
 
 Might have to move the init code out of the glyph constructors into an
 init function so that they can return errors.