bf.html 956 B

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