Package: cairo

CEnum cairo-path-data-type-t

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.
(defcenum cairo-path-data-type-t
  :move-to
  :line-to
  :curve-to
  :close-path)  
:move-to
A move-to operation.
:line-to
A line-to operation.
:curve-to
A curve-to operation.
:close-path
A close-path operation.
 

See also

2021-12-12