-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathPyLNLib.cpp
More file actions
44 lines (36 loc) · 715 Bytes
/
Copy pathPyLNLib.cpp
File metadata and controls
44 lines (36 loc) · 715 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
/*
* Author:
* 2025/11/21 - Yuqing Liang (BIMCoder Liang)
* bim.frankliang@foxmail.com
*
*
* Use of this source code is governed by a LGPL-2.1 license that can be found in
* the LICENSE file.
*/
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "PyLNLib.h"
namespace py = pybind11;
void construct(py::module_ &);
PYBIND11_MODULE(PyLNLib, m)
{
construct(m);
}
void construct(py::module_&m)
{
cstrEnums( m);
cstrUV(m);
cstrXYZ(m);
cstrXYZW(m);
cstrMatrix4d(m);
cstrObject(m);
cstrPolynomials(m);
cstrValidationUtils(m);
cstrProjection(m);
cstrIntersection(m);
cstrKnotVectorUtils(m);
cstrBezierCurve(m);
cstrBezierSurface(m);
cstrNurbsCurve(m);
cstrNurbsSurface(m);
}