mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-12-04 08:50:06 +00:00
10c687ecd5
- [Feature Adaptive GPU Rendering of Catmull-Clark Surfaces](http://research.microsoft.com/en-us/um/people/cloop/tog2012.pdf). - New API architecture : we are planning to lock on to this new framework as the basis for backward compatibility, which we will enforce from Release 1.0 onward. Subsequent releases of OpenSubdiv should not break client code. - DirectX 11 support - and much more...
39 lines
772 B
Markdown
39 lines
772 B
Markdown
Setup:
|
|
======
|
|
* clone docco
|
|
git clone https://github.com/jashkenas/docco.git
|
|
* install node.js
|
|
http://nodejs.org/
|
|
* npm install commander
|
|
* sudo easy_install Pygments
|
|
|
|
Generate documentation:
|
|
=======================
|
|
$ ~/src/docco/bin/docco simpleCpuSubdivision.cpp
|
|
|
|
|
|
|
|
Trina's Setup
|
|
(setup above didn't work for me, here's what I did, YMMV)
|
|
|
|
To Generate docco html file:
|
|
|
|
* sudo easy_install Pygments
|
|
|
|
* install node from http://nodejs.org/
|
|
* put source into /usr/local/src
|
|
|
|
% cd /usr/local/src/node-VERSION
|
|
% ./configure
|
|
% make
|
|
% make install
|
|
% npm install -g docco
|
|
|
|
* docco should now be in /usr/local/bin
|
|
* rehash
|
|
* cd /your/source/code/directory
|
|
* docco yoursource.cpp
|
|
voila!
|
|
* docs go into /your/source/code/directory/docs
|
|
|