Skip to content

Commit e5212ec

Browse files
author
Teseo Schneider
committed
merged licences
1 parent 778ae02 commit e5212ec

File tree

2 files changed

+69
-1
lines changed

2 files changed

+69
-1
lines changed

LICENSE

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,71 @@
1+
The Wildmeshing repository and source distributions bundle a number of libraries that
2+
are compatibly licensed. We list these here. The main license is at the end
3+
4+
Name: triwild
5+
Files: https://github.com/wildmeshing/TriWild/blob/master/LICENSE.MPL2
6+
License: MPL2
7+
8+
Name: tetwild
9+
License: MPL2
10+
11+
Name: pybind11
12+
Files: https://github.com/pybind/pybind11/blob/master/LICENSE
13+
License: BSD
14+
15+
Name: aabbcc
16+
Files: https://github.com/Yixin-Hu/aabbcc/blob/master/LICENSE
17+
License: zlib
18+
19+
Name: cli11
20+
Files: https://github.com/CLIUtils/CLI11/blob/master/LICENSE
21+
License: 3-Clause BSD
22+
23+
Name: geogram
24+
Files: http://alice.loria.fr/software/geogram/doc/html/geogram_license.html
25+
License: 3-clause BSD
26+
27+
Name: libigl
28+
Files: https://github.com/libigl/libigl/blob/master/LICENSE.GPL
29+
License: MPL2
30+
31+
Name: nlopt
32+
Files: https://nlopt.readthedocs.io/en/latest/NLopt_License_and_Copyright/
33+
License: MIT (we use only Sbplx)
34+
35+
Name: spdlog
36+
Files: https://github.com/gabime/spdlog/blob/v1.x/LICENSE
37+
License: MIT
38+
39+
Name: tbb
40+
Files: https://github.com/wjakob/tbb/blob/master/LICENSE
41+
License: Apache-2.0
42+
43+
Name: stdint
44+
Files: https://github.com/alicevision/geogram/blob/0ac4a5889f8eaef9372b888126deec2334128158/src/lib/geogram/third_party/pstdint.h
45+
License: BSD
46+
47+
Name: LM6
48+
Files: https://github.com/alicevision/geogram/blob/0ac4a5889f8eaef9372b888126deec2334128158/src/lib/geogram/third_party/LM7/copyright.txt
49+
License: LGPL
50+
51+
Name: rply
52+
Files: https://github.com/alicevision/geogram/blob/0ac4a5889f8eaef9372b888126deec2334128158/src/lib/geogram/third_party/rply/LICENSE
53+
License: MIT
54+
55+
Name: zlib
56+
Files: https://github.com/alicevision/geogram/blob/0ac4a5889f8eaef9372b888126deec2334128158/src/lib/geogram/third_party/zlib/LICENSE
57+
License: MIT
58+
59+
Name: gzstream
60+
Files: https://github.com/alicevision/geogram/blob/0ac4a5889f8eaef9372b888126deec2334128158/src/lib/geogram/third_party/gzstream/COPYING.LIB
61+
License: LGPL
62+
63+
Name: Screened Poisson Surface Reconstruction
64+
Files: https://github.com/alicevision/geogram/blob/0ac4a5889f8eaef9372b888126deec2334128158/src/lib/geogram/third_party/PoissonRecon/LICENSE.txt
65+
License: MIT
66+
67+
68+
169
Mozilla Public License Version 2.0
270
==================================
371

src/binding.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ PYBIND11_MODULE(wildmeshing, m) {
502502
fout << Statistics::stats();
503503
fout.close();
504504
},
505-
"Robust Tetrahedralization",
505+
"Robust Tetrahedralization, this is an alpha developement version of TetWild. For a stable release refer to the C++ version https://github.com/Yixin-Hu/TetWild",
506506
py::arg("input"), // "Input surface mesh INPUT in .off/.obj/.stl/.ply format. (string, required)"
507507
// py::arg("postfix") = "" //"Add postfix into outputs' file name"
508508
py::arg("output") = "", // "Output tetmesh OUTPUT in .msh format. (string, optional, default: input_file+postfix+'.msh')"

0 commit comments

Comments
 (0)