Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
threevis
threevis
Commits
a3798826
Commit
a3798826
authored
Jan 31, 2018
by
Dario Seyb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial commit
parent
0f23617f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
.gitignore
.gitignore
+8
-0
meshvis/__init__.py
meshvis/__init__.py
+5
-0
setup.py
setup.py
+11
-0
No files found.
.gitignore
0 → 100644
View file @
a3798826
# Compiled python modules.
*.pyc
# Setuptools distribution folder.
/dist/
# Python egg metadata, regenerated from source files by setuptools.
/*.egg-info
meshvis/__init__.py
0 → 100644
View file @
a3798826
import
openmesh
as
om
from
pythreejs
import
*
def
test
():
return
"Hi!"
setup.py
0 → 100644
View file @
a3798826
from
setuptools
import
setup
setup
(
name
=
'meshvis'
,
version
=
'0.1'
,
description
=
'Visualize meshes, point clouds, volumes and other geometry in a Jupyter Notebook'
,
url
=
'https://graphics.rwth-aachen.de:9000/dseyb/meshvis'
,
author
=
'Dario Seyb'
,
author_email
=
'dario.seyb@rwth-aachen.de'
,
license
=
'MIT'
,
packages
=
[
'meshvis'
],
zip_safe
=
False
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment