-
Notifications
You must be signed in to change notification settings - Fork 31
/
README
52 lines (38 loc) · 1.11 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
42
43
44
45
46
47
48
49
50
51
52
AbcView is a graphical Alembic inspection, visualization and scene assembly
tool. It offers a number of widgets to help you inspect and visualize your
Alembic data, and assemble hierarchical scenes.
- Widgets for inspecting Alembic objects
- Hierarchical scene assembly (IO file format)
- Deferred loading for all Alembic objects
- Python console for closer inspection of Alembic objects
- Playback or step through animation using the Timeline widget
- Per-camera render modes (box, fill, line, point)
The repo contains both the current PyQt-based AbcView and a work-in-progress
C++ conversion. The C++ version is much faster, but does not yet support all
of the same features as the current PyQt version.
More information-
http://docs.alembic.io/python/abcview.html
Requirements
------------
Alembic
CMake
ilmbase
Boost
zlib
OpenGL
Qt4+
For PyQt version:
Python 2.6+
PyAlembic
PyAbcOpenGL
PyOpenGL
PyQt4+
argparse
Build
-----
1. cmake [source] [OPTIONS]
2. if you're building the C++ version, you may beed to recreate the Qt moc
files for your platform:
$ moc MainWindow.h -o MainWindow.moc
3. make
4. make install