Searched defs:PathVector (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.cpp188 struct PathVector { struct in namespace:WebCore
192 PathVector() : m_x(0), m_y(0) {} function in struct:WebCore::PathVector
193 PathVector(float x, float y) : m_x(x), m_y(y) {} function in struct:WebCore::PathVector
199 PathVector operator-(const PathPoint& p1, const PathPoint& p2)
201 return PathVector(p1.m_x - p2.m_x, p1.m_y - p2.m_y);
659 PathVector v01 = p0 - p1;
660 PathVector v21 = p2 - p1;
691 PathVector vm1 = midPoint - p1;

Completed in 87 milliseconds