Sha256: 4a97f1bc8a70bb111f5ab4fe54159c444987462e3e2bdcd83e7f97f94a82f4f5
Contents?: true
Size: 466 Bytes
Versions: 3
Compression:
Stored size: 466 Bytes
Contents
#ifndef _BEZCTX_INTF_H #define _BEZCTX_INTF_H typedef struct _bezctx bezctx; bezctx * new_bezctx(void); void bezctx_moveto(bezctx *bc, double x, double y, int is_open); void bezctx_lineto(bezctx *bc, double x, double y); void bezctx_quadto(bezctx *bc, double x1, double y1, double x2, double y2); void bezctx_curveto(bezctx *bc, double x1, double y1, double x2, double y2, double x3, double y3); void bezctx_mark_knot(bezctx *bc, int knot_idx); #endif
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
spiro-0.0.3 | ext/spiro/bezctx_intf.h |
spiro-0.0.2 | ext/spiro/bezctx_intf.h |
spiro-0.0.1 | ext/spiro/bezctx_intf.h |