Skip to content

Commit b3a8759

Browse files
committed
feat(filters): Finished default parameters/filters to PyMeshlab and Open3d surfaces classes
0 parents  commit b3a8759

36 files changed

+53346
-0
lines changed

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*.py]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_style = space
8+
indent_size = 4
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
max_line_length = 100
12+
13+
# The JSON files contain newlines inconsistently
14+
[*.json]
15+
insert_final_newline = false
16+
17+
# Batch files use tabs for indentation
18+
[*.bat]
19+
indent_style = tab
20+
21+
[*.md]
22+
trim_trailing_whitespace = false

.gitignore

Lines changed: 228 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,228 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
98+
__pypackages__/
99+
100+
# Celery stuff
101+
celerybeat-schedule
102+
celerybeat.pid
103+
104+
# SageMath parsed files
105+
*.sage.py
106+
107+
# Environments
108+
.env
109+
.venv
110+
env/
111+
venv/
112+
ENV/
113+
env.bak/
114+
venv.bak/
115+
116+
# Spyder project settings
117+
.spyderproject
118+
.spyproject
119+
120+
# Rope project settings
121+
.ropeproject
122+
123+
# mkdocs documentation
124+
/site
125+
126+
# mypy
127+
.mypy_cache/
128+
.dmypy.json
129+
dmypy.json
130+
131+
# Pyre type checker
132+
.pyre/
133+
134+
# pytype static type analyzer
135+
.pytype/
136+
137+
# Cython debug symbols
138+
cython_debug/
139+
140+
# ------ Virtualenv .gitignore ------
141+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
142+
[Bb]in
143+
[Ii]nclude
144+
[Ll]ib
145+
[Ll]ib64
146+
[Ll]ocal
147+
[Ss]cripts
148+
pyvenv.cfg
149+
pip-selfcheck.json
150+
151+
# ------ JetBrains IDEs .gitignore ------
152+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
153+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
154+
# User-specific stuff
155+
.idea/**/workspace.xml
156+
.idea/workspace.xml
157+
.idea/**/tasks.xml
158+
.idea/**/usage.statistics.xml
159+
.idea/**/dictionaries
160+
.idea/**/shelf
161+
162+
# Generated files
163+
.idea/**/contentModel.xml
164+
165+
# Sensitive or high-churn files
166+
.idea/**/dataSources/
167+
.idea/**/dataSources.ids
168+
.idea/**/dataSources.local.xml
169+
.idea/**/sqlDataSources.xml
170+
.idea/**/dynamic.xml
171+
.idea/**/uiDesigner.xml
172+
.idea/**/dbnavigator.xml
173+
174+
# Gradle
175+
.idea/**/gradle.xml
176+
.idea/**/libraries
177+
178+
# Gradle and Maven with auto-import
179+
# When using Gradle or Maven with auto-import, you should exclude module files,
180+
# since they will be recreated, and may cause churn. Uncomment if using
181+
# auto-import.
182+
# .idea/artifacts
183+
# .idea/compiler.xml
184+
# .idea/jarRepositories.xml
185+
# .idea/modules.xml
186+
# .idea/*.iml
187+
# .idea/modules
188+
# *.iml
189+
# *.ipr
190+
191+
# CMake
192+
cmake-build-*/
193+
194+
# Mongo Explorer plugin
195+
.idea/**/mongoSettings.xml
196+
197+
# File-based project format
198+
*.iws
199+
200+
# IntelliJ
201+
out/
202+
203+
# mpeltonen/sbt-idea plugin
204+
.idea_modules/
205+
206+
# JIRA plugin
207+
atlassian-ide-plugin.xml
208+
209+
# Cursive Clojure plugin
210+
.idea/replstate.xml
211+
212+
# Crashlytics plugin (for Android Studio and IntelliJ)
213+
com_crashlytics_export_strings.xml
214+
crashlytics.properties
215+
crashlytics-build.properties
216+
fabric.properties
217+
218+
# Editor-based Rest Client
219+
.idea/httpRequests
220+
221+
# Android studio 3.1+ serialized cache file
222+
.idea/caches/build_file_checksums.ser
223+
224+
# ------ Specific project files ------
225+
/complex_terrain/*.mlx
226+
/simple_terrain/*.mlx
227+
# Generated triangle/mesh file
228+
terrain.ply

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/open3d.xml

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/pymeshlab.xml

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/surface_reconstruction.iml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)