Lines Matching refs:SkDPoint
57 const SkDPoint& operator[](int n) const {
62 SkDPoint& operator[](int n) {
67 SkDPoint conicTop(const SkPoint curve[3], SkScalar curveWeight,
69 SkDPoint cubicTop(const SkPoint curve[4], SkScalar , double s, double e, double* topT);
72 SkDPoint lineTop(const SkPoint[2], SkScalar , double , double , double* topT);
73 double nearPoint(SkPath::Verb verb, const SkDPoint& xy, const SkDPoint& opp) const;
75 SkDPoint quadTop(const SkPoint curve[3], SkScalar , double s, double e, double* topT);
99 extern SkDPoint (SkDCurve::* const Top[])(const SkPoint curve[], SkScalar cWeight,
102 static SkDPoint dline_xy_at_t(const SkPoint a[2], SkScalar , double t) { in dline_xy_at_t()
108 static SkDPoint dquad_xy_at_t(const SkPoint a[3], SkScalar , double t) { in dquad_xy_at_t()
114 static SkDPoint dconic_xy_at_t(const SkPoint a[3], SkScalar weight, double t) { in dconic_xy_at_t()
120 static SkDPoint dcubic_xy_at_t(const SkPoint a[4], SkScalar , double t) { in dcubic_xy_at_t()
126 static SkDPoint (* const CurveDPointAtT[])(const SkPoint[], SkScalar , double ) = {
134 static SkDPoint ddline_xy_at_t(const SkDCurve& c, double t) { in ddline_xy_at_t()
138 static SkDPoint ddquad_xy_at_t(const SkDCurve& c, double t) { in ddquad_xy_at_t()
142 static SkDPoint ddconic_xy_at_t(const SkDCurve& c, double t) { in ddconic_xy_at_t()
146 static SkDPoint ddcubic_xy_at_t(const SkDCurve& c, double t) { in ddcubic_xy_at_t()
150 static SkDPoint (* const CurveDDPointAtT[])(const SkDCurve& , double ) = {
265 SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(endT) }; in line_is_vertical()