| 239 | } |
| 240 | |
| 241 | int Font::Mesher::lineTo( const FT_Vector *to, void *that ) |
| 242 | { |
| 243 | Mesher *m = (Mesher *)( that ); |
| 244 | m->addPoint( V3f( to->x, to->y, 0 ) ); |
| 245 | return 0; |
| 246 | } |
| 247 | |
| 248 | int Font::Mesher::conicTo( const FT_Vector *control, const FT_Vector *to, void *that ) |
| 249 | { |