| 222 | } |
| 223 | |
| 224 | void Font::Mesher::addPoint( const V3f &p ) |
| 225 | { |
| 226 | PointVector &points = currentPointVector(); |
| 227 | if( !points.size() || !(*(points.rbegin())).equalWithAbsError( p, 1e-6 ) ) |
| 228 | { |
| 229 | points.push_back( p ); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | int Font::Mesher::moveTo( const FT_Vector *to, void *that ) |
| 234 | { |
no test coverage detected