Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
threevis
threevis
Commits
623523b1
Commit
623523b1
authored
Mar 07, 2018
by
Isaak Lim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update openmesh calls in README.md
parent
fd523b56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
README.md
README.md
+2
-4
No files found.
README.md
View file @
623523b1
...
...
@@ -21,8 +21,7 @@ a Python library for visualizing meshes, point clouds, and other geometry in Jup
import
threevis
import
openmesh
as
om
m
=
om
.
TriMesh
()
om
.
read_mesh
(
m
,
'/home/dseyb/git/openmesh-python/tests/TestFiles/cube-minimal-normals.ply'
)
m
=
om
.
read_trimesh
(
'examples/models/bunny.obj'
)
threevis
.
display_openmesh
(
m
)
```
...
...
@@ -35,8 +34,7 @@ import openmesh as om
import
numpy
as
np
# Load Mesh
m
=
om
.
TriMesh
()
om
.
read_mesh
(
m
,
"./mouse.obj"
)
m
=
om
.
read_trimesh
(
'mouse.obj'
)
# Create Context
ctx
=
threevis
.
Context
(
width
=
640
,
height
=
480
)
...
...
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