12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <link rel='stylesheet' type='text/css' href='../style.css' >
- <title>libigl file formats | .rbr</title>
- </head>
- <body class=article_outer>
- <div class=article_inner>
- <a href=..><img src=../libigl-logo.jpg alt="igl logo" class=center></a>
- <h1>.rbr - ReAntTweakbar state file</h1>
- <hr>
- <p>
- An .rbr file contains the saved values of the ReAntTweakBar class. It is used
- to load and save variables (and states specified via callbacks) stored in an
- AntTweakBar GUI.
- </p>
- <p>
- Each line contains the name of the AntTweakBar item, the type of item and the
- value as a string:
- </p>
- <pre><code>[name]: [type] [value]</code></pre>
- <p>
- As per AntTweakBar's own advice, names should not contain spaces. Names should
- also not contain colons (':'). An example of a line looks like:
- </p>
- <pre><code>my_rotation: TW_TYPE_QUAT4 0.0111272 -0.00101157 0.00648534 -0.999917</code></pre>
- <p>Not all AntTweakBar types are currently supported. See
- <code>igl/ReAntTweakbar.h</code> for an up-to-date list of supported
- types.</p>
- <p>See also: <a href=.>file formats</a></p>
- </div>
- </body>
- </html>
|