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

constants group PathCapType

Constants
BUTT End the path at its start or end point, without any cap. 
ROUND Extend the path with a half circle cap, diameter is the line width. 
SQUARE Extend the path with a rectangular cap, half the line width long. 
Constants' Details
BUTT
const byte BUTT =0;
Description
End the path at its start or end point, without any cap.
ROUND
const byte ROUND =1;
Description
Extend the path with a half circle cap, diameter is the line width.
SQUARE
const byte SQUARE =2;
Description
Extend the path with a rectangular cap, half the line width long.
Top of Page