File: bindings_manif.cpp

package info (click to toggle)
manif 0.0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,576 kB
  • sloc: cpp: 11,789; ansic: 8,774; python: 2,158; sh: 24; makefile: 23; xml: 21
file content (30 lines) | stat: -rw-r--r-- 542 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <pybind11/pybind11.h>

void wrap_Rn(pybind11::module &m);

void wrap_SO2(pybind11::module &m);
void wrap_SO3(pybind11::module &m);

void wrap_SE2(pybind11::module &m);
void wrap_SE3(pybind11::module &m);

void wrap_SE_2_3(pybind11::module &m);

void wrap_SGal3(pybind11::module &m);

PYBIND11_MODULE(_bindings, m) {
  m.doc() = "Python bindings for the manif library, "
            "a small library for Lie theory.";

  wrap_Rn(m);

  wrap_SO2(m);
  wrap_SO3(m);

  wrap_SE2(m);
  wrap_SE3(m);

  wrap_SE_2_3(m);

  wrap_SGal3(m);
}