Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5e6dd9a
REMOVE all.
petrasvestartas Mar 4, 2025
da292f3
ADD cgal and compas remesh example.
petrasvestartas Mar 4, 2025
0a46eba
CHANGE-ADD stdafx.h to compas.h, added scripts with line_formatter, t…
petrasvestartas Mar 5, 2025
d53d5a3
README installation instructions.
petrasvestartas Mar 6, 2025
c14bb59
README development instructions.
petrasvestartas Mar 6, 2025
fede6af
ADD-REAMDE module create instruction and measure module.
petrasvestartas Mar 6, 2025
84d2057
FIX python scripts, tests and api in compas_cgal folder is aligned to…
petrasvestartas Mar 6, 2025
8bf4b98
ADD booleans.
petrasvestartas Mar 6, 2025
a7efe20
ADD intersections.
petrasvestartas Mar 6, 2025
d89ac11
ADD tasks and requirements from original repository.
petrasvestartas Mar 6, 2025
0c726a1
CHANGELOG
petrasvestartas Mar 6, 2025
25d5701
ADD reconstruction.
petrasvestartas Mar 6, 2025
b68ad9b
ADD skeletonization.
petrasvestartas Mar 7, 2025
034a5b8
ADD add sliver and add missing skeletonization test.
petrasvestartas Mar 7, 2025
0569aa6
ADD subdivision.
petrasvestartas Mar 7, 2025
5f90c73
ADD triangulation
petrasvestartas Mar 7, 2025
fc5308f
WIP: straight_skeleton_2 C++ part compiles.
petrasvestartas Mar 7, 2025
dbfc705
MILESTONE all methods of wrapped from C++ to Python.
petrasvestartas Mar 10, 2025
0c14499
ADD compas documentation from the main repository.
petrasvestartas Mar 10, 2025
b8b1e21
MILESTONE documentation with tested examples.
petrasvestartas Mar 13, 2025
456c13a
CLEANUP make C++ style consistant for variables names.
petrasvestartas Mar 13, 2025
470eded
CLEANUP lint, format and doc source option.
petrasvestartas Mar 13, 2025
9e6c31a
FIX authors.
petrasvestartas Mar 14, 2025
d6af1ac
FIX cgal license instead of nanobind.
petrasvestartas Mar 14, 2025
77e88f4
ADD editorconfig
petrasvestartas Mar 14, 2025
e0528c9
ADD conda recipe folder and github actions.
petrasvestartas Mar 14, 2025
52de28c
REMOVE readme installation section to follow the documentation.
petrasvestartas Mar 14, 2025
4f698bf
ADD gitignore for the missing formats.
petrasvestartas Mar 14, 2025
a88e473
REMOVE documentation separation line.
petrasvestartas Mar 14, 2025
fe0cb51
DOCS-FIX separation line in bullet point list was missing.
petrasvestartas Mar 14, 2025
20b5ad5
FIX environment.yml
petrasvestartas Mar 14, 2025
acaccf2
FIX test_reconstruction_poisson_surface_reconstruction.py remove eule…
petrasvestartas Mar 14, 2025
67e92bd
DOCS example files.
petrasvestartas Mar 14, 2025
b161b90
DOCS-REMOVE exclusion of source code button in API.
petrasvestartas Mar 14, 2025
ee2c3c9
REMOVE placeholders.
petrasvestartas Mar 14, 2025
8e6554a
ADD compas_cgal.png main image.
petrasvestartas Mar 14, 2025
e786e77
CHANGELOG move nanobidn integration to change section.
petrasvestartas Mar 14, 2025
96abc81
DOCS cleanup examples.
petrasvestartas Mar 14, 2025
de991f9
ADD gitignore generated fiels
petrasvestartas Mar 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ indent_style = tab
indent_size = 4

[LICENSE]
insert_final_newline = false
insert_final_newline = false
172 changes: 81 additions & 91 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# Byte-compiled / optimized / DLL files
# Python bytecode and cache
__pycache__/
**/__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
# Distribution and packaging
.Python
env/
build/
_build/
**/build/
develop-eggs/
dist/
downloads/
Expand All @@ -20,22 +19,62 @@ lib64/
parts/
sdist/
var/
#wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
# External dependencies
ext/**
external/
**/external/

# IDE and editor settings
.vscode/
.vs/
.idea/
*.suo
*.user
*.sln
*.vcxproj
*.vcxproj.filters
*.vcxproj.user
ipch/
.spyderproject
.spyproject
.ropeproject
scripts/.idea/**

# Compiled files and binaries
*.pyd
*.so
*.dll
*.exe
*.obj
*.pdb
*.ilk
*.exp
*.lib
*.lprof
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# CMake generated
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
compile_commands.json
CTestTestfile.cmake
Testing/
_deps/

# Virtual environments
.env
.venv
venv/
ENV/
.python-version

# Unit test / coverage reports
# Testing and coverage
htmlcov/
.tox/
.coverage
Expand All @@ -45,90 +84,41 @@ nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
.ruff_cache/
.mypy_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
# Documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site
generated/
docs/api/**
!docs/api/*.rst
!docs/api/*.py

# mypy
.mypy_cache/

# ==============================================================================
# COMPAS CGAL
# ==============================================================================

# COMPAS CGAL specific
*.3dmbak
*.3dm
*.rhl
*.rui_bak
*.so

temp

.DS_Store

.vscode/**
.idea/**

ext/**

dist/**

scripts/.idea/**

generated

*.3dm

temp/
recipe/**
!recipe/sha256.py

.pytest_cache
.ruff_cache
.vscode
# Logs and temporary files
*.log
pip-log.txt
pip-delete-this-directory.txt
local_settings.py
celerybeat-schedule

# Other
*.mo
*.pot
*.sage.py
instance/
.webassets-cache
.scrapy
.DS_Store
Thumbs.db
.ipynb_checkpoints
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [1.0.1] 2025-03-06

### Added

### Changed

* Nanobind integration.

### Removed

* Files related to pybind11.

## [0.7.2] 2024-10-29

Expand Down
Loading
Loading