File: seed-cairo-matrix.h

package info (click to toggle)
seed 3.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,900 kB
  • sloc: ansic: 24,336; sh: 11,196; makefile: 773; xml: 187; python: 173
file content (14 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _SEED_MATRIX_H
#define _SEED_MATRIX_H
#include <seed.h>
#include <cairo/cairo.h>

void seed_define_cairo_matrix (SeedContext ctx, SeedObject namespace_ref);

gboolean seed_value_to_cairo_matrix (SeedContext ctx, SeedValue value,
				     cairo_matrix_t *matrix, SeedException *exception);

SeedValue seed_value_from_cairo_matrix (SeedContext ctx, const cairo_matrix_t *matrix,
					       SeedException *exception);

#endif