Home | History | Annotate | Download | only in core

Lines Matching full:points

51      *  The out points are a weighted average of this path and the ending path. 
54 * @param weight The weight, from 0 to 1. The output points are set to
55 * (this->points * weight) + ending->points * (1 - weight).
215 * Returns true if all of the points in this path are finite, meaning there
272 * points in line[] to the end-points of the line. If the path is not a
277 /** Return the number of points in the path
287 /** Returns the number of points in the path. Up to max points are copied.
289 @param points If not null, receives up to max points
290 @param max The maximum number of points to copy into points
291 @return the actual number of points in the path
293 int getPoints(SkPoint points[], int max) const;
312 * Returns the bounds of the path's points. If the path contains zero points/verbs, this
315 * do not extend as far as their control points. Additionally this bound encompases all points,
335 * considered (e.g. a rect that is a point can be inside a path). Points or line segments where
342 /** Hint to the path to prepare for adding more points. This can allow the
345 @param extraPtCount The number of extra points the path should
451 /** Add a cubic bezier from the last point, approaching control points
465 /** Add a cubic bezier from the last point, approaching control points p1
781 * an index of the radii minor/major points, ordered clock-wise:
864 /** Transform the points in this path by matrix, and write the answer into
872 /** Transform the points in this path by matrix
880 /** Return the last point on the path. If no points have been added, (0,0)
881 is returned. If there are no points, this returns false, otherwise it
888 /** Set the last point on the path. If no points have been added,
896 /** Set the last point on the path. If no points have been added, moveTo(p)
921 kLine_Verb, //!< iter.next returns 2 points
922 kQuad_Verb, //!< iter.next returns 3 points
923 kConic_Verb, //!< iter.next returns 3 points + iter.conicWeight()
924 kCubic_Verb, //!< iter.next returns 4 points
925 kClose_Verb, //!< iter.next returns 0 points
926 kDone_Verb, //!< iter.next returns 0 points
948 @param pts The points representing the current verb and/or segment
1003 /** Iterate through the verbs in the path, providing the associated points.
1019 @param pts The points representing the current verb and/or segment
1070 and points in the path (but not the fill type [except on Android skbug.com/1762]).
1131 // called before we add points for lineTo, quadTo, cubicTo, checking to see
1146 // called by stroker to see if all points are equal and worthy of a cap