Home
last modified time | relevance | path

Searched refs:PathVector (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/platform/graphics/wince/
DPlatformPathWince.cpp188 struct PathVector { struct
192 PathVector() : m_x(0), m_y(0) {} in PathVector() argument
193 PathVector(float x, float y) : m_x(x), m_y(y) {} in PathVector() function
199 PathVector operator-(const PathPoint& p1, const PathPoint& p2) in operator -()
201 return PathVector(p1.m_x - p2.m_x, p1.m_y - p2.m_y); in operator -()
660 PathVector v01 = p0 - p1; in addArcTo()
661 PathVector v21 = p2 - p1; in addArcTo()
692 PathVector vm1 = midPoint - p1; in addArcTo()