blob: 769db11763d45b9ce7de603572dfaad2f7fdb5f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef JANET_2GEOM_POINT_INCLUDED
#define JANET_2GEOM_POINT_INCLUDED
#include <janet.h>
#ifdef __cplusplus
#include <2geom/point.h>
Janet janet_wrap_point(Geom::Point const &x);
Janet janet_wrap_point(Geom::IntPoint const &x);
Geom::Point janet_unwrap_point(Janet x);
extern "C" {
#endif
extern const JanetAbstractType geom_point_type;
void janet_lib_geom_point(JanetTable *env);
#ifdef __cplusplus
}
#endif
#endif // JANET_2GEOM_POINT_INCLUDED
|