Home | History | Annotate | Download | only in core

Lines Matching defs:Join

662     /** \enum SkPaint::Join
663 Join specifies how corners are drawn when a shape is stroked. Join
667 Choose miter join to draw sharp corners. Choose round join to draw a circle with a
668 radius equal to the stroke width on top of the corner. Choose bevel join to minimally
671 The fill path constructed to describe the stroked path respects the join setting but may
672 not contain the actual join. For instance, a fill path constructed with round joins does
675 enum Join {
684 kLast_Join = kBevel_Join, //!< Equivalent to the largest value for Join.
687 Join is set to kMiter_Join by default.
711 Join getStrokeJoin() const { return (Join)fBitfields.fJoinType; }
715 @param join one of: kMiter_Join, kRound_Join, kBevel_Join;
718 void setStrokeJoin(Join join);