#ifndef SFONT_H #define SFONT_H #include "geometry.h" /* for Point, CONST, COUNT() */ #ifdef __cplusplus extern "C" { #endif extern float sfStrWidth( CONST char *str ); /* width assuming height=1.0 */ extern float sfStrDraw( CONST char *str, float height, CONST Point *base ); extern float sfStrDrawTJ( CONST char *str, float height, CONST Point *base, CONST Matrix *tfm, CONST char *just ); #ifdef __cplusplus } #endif #endif /*SFONT_H*/