Package: cairo

CEnum cairo-line-join-t

Details

Specifies how to render the junction of two lines when stroking. The default line join style is :miter.
(defcenum cairo-line-join-t
  :miter
  :round
  :bevel)  
:miter
Use a sharp (angled) corner, see the cairo-set-miter-limit function.
:round
Use a rounded join, the center of the circle is the joint point.
:bevel
Use a cut-off join, the join is cut off at half the line width from the joint point.
 

See also

2021-12-12