Package: cairo

CEnum cairo:path-data-type-t

Declaration

(cffi:defcenum path-data-type-t
  :move-to
  :line-to
  :curve-to
  :close-path)  

Values

:move-to
A move-to operation.
:line-to
A line-to operation.
:curve-to
A curve-to operation.
:close-path
A close-path operation.

Details

The cairo:path-data-type-t enumeration is used to describe the type of one portion of a path when represented as a cairo:path-t instance. See the cairo:path-data-t structure for details.
 

See also

2025-1-14