Home | History | Annotate | Download | only in graphics

Lines Matching defs:PathTraversalState

21 #include "platform/graphics/PathTraversalState.h"
127 static float curveLength(PathTraversalState& traversalState, CurveType curve)
151 if (traversalState.m_action == PathTraversalState::TraversalPointAtLength || traversalState.m_action == PathTraversalState::TraversalNormalAngleAtLength) {
165 PathTraversalState::PathTraversalState(PathTraversalAction action)
175 float PathTraversalState::closeSubpath()
182 float PathTraversalState::moveTo(const FloatPoint& point)
188 float PathTraversalState::lineTo(const FloatPoint& point)
195 float PathTraversalState::quadraticBezierTo(const FloatPoint& newControl, const FloatPoint& newEnd)
205 float PathTraversalState::cubicBezierTo(const FloatPoint& newControl1, const FloatPoint& newControl2, const FloatPoint& newEnd)
215 void PathTraversalState::processSegment()