| 231 | } |
| 232 | |
| 233 | int Font::Mesher::moveTo( const FT_Vector *to, void *that ) |
| 234 | { |
| 235 | Mesher *m = (Mesher *)( that ); |
| 236 | m->m_pointVectors.push_back( PointVector() ); |
| 237 | m->addPoint( V3f( to->x, to->y, 0 ) ); |
| 238 | return 0; |
| 239 | } |
| 240 | |
| 241 | int Font::Mesher::lineTo( const FT_Vector *to, void *that ) |
| 242 | { |