123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <link rel='stylesheet' type='text/css' href='../style.css' >
- <title>libigl file formats | .bf</title>
- </head>
- <body class=article_outer>
- <div class=article_inner>
- <a href=..><img src=../libigl-logo.jpg alt="igl logo" class=center></a>
- <h1>.bf - bone forests</h1>
- <hr>
- <p>
- A .bf file contains a "bone forest". Normally a skeleton for linear blend
- skinning is a "bone tree" with a single root. But this format may store
- multiple trees, hence a forest.
- <p>
- Each line contains data about a vertex (joint) of the bone forest:
- </p>
- <pre><code>[weight index] [parent index] [x] [y] [z] [undocument optional data]</code></pre>
- <p>
- Indices begin with 0. The weight index is -1 if the bone does not have an
- associated weight. The parent index is -1 for root nodes. The x,y,z coordinates
- are offset vectors from this joint's parent's location (for roots, an offset
- from the origin).
- </p>
- <p>See also: <a href=.>file formats</a></p>
- </div>
- </body>
- </html>
|