Lines Matching refs:Contour
3 Path contains Lines and Curves which can be stroked or filled. Contour is
76 #Subtopic Contour
78 #Alias Contour ##
82 Contour contains one or more Verbs, and as many Points as
84 SkPath::kMove_Verb; each SkPath::kMove_Verb that follows starts a new Contour.
88 Each SkPath::moveTo starts a new Contour, and content after SkPath::close()
89 also starts a new Contour. Since SkPath::conicTo is not preceded by
90 SkPath::moveTo, the first Point of the third Contour starts at the last Point
91 of the second Contour.
110 If final Path_Verb in Contour is SkPath::kClose_Verb, Line connects Path_Last_Point in
111 Contour with first Point. A closed Contour, stroked, draws
113 as final Verb, Path_Last_Point and first Point are not connected; Contour
114 remains open. An open Contour, stroked, draws Paint_Stroke_Cap at
120 Path is drawn stroked, with an open Contour and a closed Contour.
140 Contour length is distance traveled from first Point to Path_Last_Point,
141 plus, if Contour is closed, distance from Path_Last_Point to first Point.
142 Even if Contour length is zero, stroked Lines are drawn if Paint_Stroke_Cap
165 #Subtopic Contour ##