cairoSetMiterLimit           package:RGtk2           R Documentation

_c_a_i_r_o_S_e_t_M_i_t_e_r_L_i_m_i_t

_D_e_s_c_r_i_p_t_i_o_n:

     Sets the current miter limit within the cairo context.

_U_s_a_g_e:

     cairoSetMiterLimit(cr, limit)

_A_r_g_u_m_e_n_t_s:

    'cr': ['Cairo']  a cairo context

 'limit': [numeric]  miter limit to set

_D_e_t_a_i_l_s:

     If the current line join style is set to 'CAIRO_LINE_JOIN_MITER'
     (see 'cairoSetLineJoin'), the miter limit is used to determine
     whether the lines should be joined with a bevel instead of a
     miter. Cairo divides the length of the miter by the line width. If
     the result is greater than the miter limit, the style is converted
     to a bevel.

     As with the other stroke parameters, the current line miter limit
     is examined by 'cairoStroke', 'cairoStrokeExtents', and
     'cairoStrokeToPath()', but does not have any effect during path
     construction.

_A_u_t_h_o_r(_s):

     Derived by RGtkGen from GTK+ documentation

