view modules/vec.tp @ 330:e70f9d3f19f8

Turn off hinting in freetype sample as hinting does not play nice with using font units for layout
author Michael Pavone <pavone@retrodev.com>
date Sat, 28 Mar 2015 13:26:44 -0700
parents 860075fdc2d3
children
line wrap: on
line source

#{
	x:y <- :_x :_y {
		#{
			x <- _x
			y <- _y
		}
	}
	
	x:y:z <- :_x :_y :_z {
		#{
			x <- _x
			y <- _y
			z <- _z
		}
	}
	
	x:y:z:w <- :_x :_y :_z :_w {
		#{
			x <- _x
			y <- _y
			z <- _z
			w <- _w
		}
	}
}