Okay, so the stencil font should measure as,
1/3rd max line width, based on 3×3 block space.
and that max should hold to larger block sizes for aesthetic reasons of legibility and SciVeg's style recognition.
if block is 15×15, max line width standard should be 5.
//s also requires 5 verticle minimum..
//5×5 is now the minimum block requisite
//Therfore 1to5 is 25 per block, 75 per column lower case
//Upper case should be suficable
//Thus W and M will not be wider than w and m, only taller
//3rd or 5th line width max, for partial or full alphabit
Required. A set of commands which define the path.
The following commands are available for path data:
d
M = moveto (move from one point to another point)
L = lineto (create a line)
H = horizontal lineto (create a horizontal line)
V = vertical lineto (create a vertical line)
C = curveto (create a curve)
S = smooth curveto (create a smooth curve)
Q = quadratic Bézier curve (create a quadratic Bézier curve)
T = smooth quadratic Bézier curveto (create a smooth quadratic Bézier curve)
A = elliptical Arc (create a elliptical arc)
Z = closepath (close the path)
Note: All of the commands above can also be expressed in lower case. Upper case means absolutely positioned, lower case means relatively positioned.