-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
120 changed files
with
6,530 additions
and
208,042 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
set(CPACK_GENERATOR RPM) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Example of CMakeOptions.txt file | ||
# Copy to CMakeOptions.txt, then edit the options: | ||
# | ||
# Setting GARGANTUA mode (64-bit indices), and | ||
# deactivating optional content that is not compatible | ||
# with 64-bit indices. | ||
|
||
set(GEOGRAM_WITH_GARGANTUA ON) | ||
set(GEOGRAM_WITH_TETGEN OFF) | ||
set(GEOGRAM_WITH_TRIANGLE OFF) | ||
set(GEOGRAM_WITH_HLBFGS OFF) | ||
set(GEOGRAM_WITH_GRAPHICS OFF) | ||
set(GEOGRAM_WITH_EXPLORAGRAM OFF) | ||
set(GEOGRAM_WITH_LEGACY_NUMERICS OFF) | ||
set(GEOGRAM_WITH_LUA OFF) | ||
set(GEOGRAM_LIB_ONLY ON) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2022, Bruno Levy | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# geogram | ||
|
||
![](https://github.com/BrunoLevy/geogram/wiki/geogram_banner.gif) | ||
|
||
Geogram is a programming library with geometric algorithms. | ||
It contains the main results in Geometry Processing from the former | ||
ALICE Inria project, that is, more than 30 research articles published | ||
in ACM SIGGRAPH, ACM Transactions on Graphics, Symposium on Geometry | ||
Processing and Eurographics. It was supported by two grants from the | ||
European Research Council (ERC): GOODSHAPE and VORPALINE. | ||
|
||
Links | ||
----- | ||
- Documentation, how to compile, tutorials.... [Geogram Wiki](https://github.com/BrunoLevy/geogram/wiki) | ||
- Programmer's reference manual... [Doxygen](https://brunolevy.github.io/geogram/) | ||
- Releases... [Latest](https://brunolevy.github.io/geogram/Releases/) | ||
- [Graphite](https://github.com/BrunoLevy/GraphiteThree), an experimental 3D modeler built around geogram. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
# Sets the CACHE variable VORPALINE_PLATFORM based on the detected operating system. | ||
# | ||
# Note that it would be better to use CMAKE_SYSTEM_NAME directly, and use other CMake | ||
# variables to enable other build-specific flags, e.g.: | ||
# - Use BUILD_SHARED_LIBS to enable behavior specific to shared libs | ||
# - Use CheckCXXCompilerFlag to enable compiler-specific flags | ||
# | ||
if(CMAKE_SYSTEM_NAME MATCHES Linux) | ||
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") | ||
set(VORPALINE_PLATFORM "Linux64-gcc-dynamic" CACHE STRING "") | ||
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||
set(VORPALINE_PLATFORM "Linux64-clang-dynamic" CACHE STRING "") | ||
endif() | ||
elseif(CMAKE_SYSTEM_NAME MATCHES Darwin) | ||
set(VORPALINE_PLATFORM "Darwin-clang-dynamic" CACHE STRING "") | ||
elseif(CMAKE_SYSTEM_NAME MATCHES Windows) | ||
set(VORPALINE_PLATFORM "Win-vs-generic" CACHE STRING "") | ||
elseif(CMAKE_SYSTEM_NAME MATCHES Android) | ||
set(VORPALINE_PLATFORM "Android-aarch64-gcc-dynamic" CACHE STRING "") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
#! | ||
# @file cmake/utilities.cmake | ||
# @brief Utilities for the Vorpaline build system | ||
|
Oops, something went wrong.