Package: cairo
Function cairo:rectangle
Lambda Listcairo:rectangle (cr x y width height) ArgumentsDetails
Adds a closed sub-path rectangle of the given size to the current path at position (x,y) in user-space coordinates. This function is logically equivalent to: (cairo:move-to cr x y) (cairo:rel-line-to cr width 0) (cairo:rel-line-to cr 0 height) (cairo:rel-line-to cr (- width) 0) (cairo:close-path cr) Notes | See also |
2025-1-14