| 60 | }; |
| 61 | |
| 62 | static Point2 ftPoint2(const FT_Vector &vector, double scale) { |
| 63 | return Point2(scale*vector.x, scale*vector.y); |
| 64 | } |
| 65 | |
| 66 | static int ftMoveTo(const FT_Vector *to, void *user) { |
| 67 | FtContext *context = reinterpret_cast<FtContext *>(user); |