Lines Matching full:join
337 /** \enum SkPaint::Join
338 Join specifies how corners are drawn when a shape is stroked. Join
342 Choose miter join to draw sharp corners. Choose round join to draw a circle with a
343 radius equal to the stroke width on top of the corner. Choose bevel join to minimally
346 The fill path constructed to describe the stroked path respects the join setting but may
347 not contain the actual join. For instance, a fill path constructed with round joins does
350 enum Join : uint8_t {
354 kLast_Join = kBevel_Join, //!< equivalent to the largest value for Join
358 /** May be used to verify that SkPaint::Join is a legal value.
375 Join getStrokeJoin() const { return (Join)fBitfields.fJoinType; }
381 void setStrokeJoin(Join join);