tgf.html 1006 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <link rel='stylesheet' type='text/css' href='../style.css' >
  5. <title>IGL_LIB file formats | .tgf</title>
  6. </head>
  7. <body>
  8. <h1>.tgf - control handle graphs</h1>
  9. <hr>
  10. <p>
  11. A .tgf file contains a graph of describing a set of control handles/structures:
  12. point controls, bones of a skelton and cages made of "cage edges".
  13. </p>
  14. <p>
  15. The first part of the file consists of lines regarding each vertex of the graph. Each line reads:
  16. </p>
  17. <pre><code>[index] [x] [y] [z] [undocument optional data]</code></pre>
  18. <p>
  19. Indices begin with 1 and should proceed in order.
  20. Then there should be a line with a sole:
  21. </p>
  22. <pre><code>#</code></pre>
  23. <p>
  24. The next section concerns the edges of the graph. Each line corresponds to an edge:
  25. </p>
  26. <pre><code>[source index] [dest index] [is bone] [is pseudo-edge] [is cage edge] [undocument other data]</code></pre>
  27. <p>
  28. Bone edges trump pseudo and cage edges.
  29. </p>
  30. </body>
  31. </html>