:: com :: sun :: star :: rendering ::

constants group PathJoinType

Constants
NONE Do not join the path segments at all. 
MITER Join the path segment by extending the outer border until they intersect.  
ROUND Join the path segment with a pie-like patch, such that the outer line of the meeting point is round.  
BEVEL Join the path segment by connecting the outer ends of the abutting segments with a straight line.  
Constants' Details
NONE
const byte NONE =0;
Description
Do not join the path segments at all.

This join type might lead, depending on the angle between the segments, to visible cracks at the meeting points.

MITER
const byte MITER =1;
Description
Join the path segment by extending the outer border until they intersect.
ROUND
const byte ROUND =2;
Description
Join the path segment with a pie-like patch, such that the outer line of the meeting point is round.
BEVEL
const byte BEVEL =3;
Description
Join the path segment by connecting the outer ends of the abutting segments with a straight line.
Top of Page