bf.html 776 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <link rel='stylesheet' type='text/css' href='../style.css' >
  5. <title>IGL_LIB file formats | .bf</title>
  6. </head>
  7. <body>
  8. <h1>.bf - bone forests</h1>
  9. <hr>
  10. <p>
  11. A .bf file contains a bone forest. That is possibly multiple bone trees, or
  12. skeletons. Singleton trees will be interpreted as point handles. Otherwise
  13. each edge in a tree will be interpreted as a bone segment.
  14. </p>
  15. <p>
  16. Each line contains data about a vertex (joint) of a bone tree:
  17. </p>
  18. <pre><code>[weight index] [parent index] [x] [y] [z] [undocument optional data]</code></pre>
  19. <p>
  20. Indices begin with 0. The weight index is -1 if the bone does not have an
  21. associated weight. The parent index is -1 for root nodes.
  22. </p>
  23. </body>
  24. </html>