-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME
41 lines (35 loc) · 1.45 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Author: Yotam Gingold <yotam (strudel) yotamgingold.com>
License: Public Domain. (I, Yotam Gingold, the author, release this code into the public domain.)
GitHub: https://github.com/yig/trimesh
trimesh.py:
A python half-edge data structure for a triangle mesh that can
- handle boundaries (the first outgoing halfedge at a vertex is always a boundary halfedge)
(and the last outgoing halfedge is always the opposite of a boundary halfedge))
- save/load itself to/from OBJ format
- save itself to OFF format
Loading:
import trimesh
mesh = trimesh.TriMesh.FromOBJ_FileName( "cube.obj" )
trimesh_viewer.py:
A very simple GLUT viewer for TriMesh objects.
Keys are:
- w: toggle edges (wireframe)
- r: reset the view
- c: captures current window backbuffer into "screen-capture-<title>-<number>.png"
- \: toggle fullscreen
- q: quit
GLUTWindow.py:
A very simple class wrapping GLUT.
Keys are:
- c: captures current window backbuffer into "screen-capture-<title>-<number>.png"
- \: toggle fullscreen
- q: quit
Known issues:
trimesh.TriMesh doesn't save or load normals.
trimesh.TriMesh doesn't load texture coordinates (though it does save them).
GLUTWindow.GLUTWindow screen capture is broken and needs to be changed to use PIL.
Version History:
- 2012-01-12:
initial release
- 2018-01-24:
supports Python 3.x