rbr.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <link rel='stylesheet' type='text/css' href='../style.css' >
  5. <title>libigl file formats | .rbr</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>.rbr - ReAntTweakbar state file</h1>
  11. <hr>
  12. <p>
  13. An .rbr file contains the saved values of the ReAntTweakBar class. It is used
  14. to load and save variables (and states specified via callbacks) stored in an
  15. AntTweakBar GUI.
  16. </p>
  17. <p>
  18. Each line contains the name of the AntTweakBar item, the type of item and the
  19. value as a string:
  20. </p>
  21. <pre><code>[name]: [type] [value]</code></pre>
  22. <p>
  23. As per AntTweakBar's own advice, names should not contain spaces. Names should
  24. also not contain colons (':'). An example of a line looks like:
  25. </p>
  26. <pre><code>my_rotation: TW_TYPE_QUAT4 0.0111272 -0.00101157 0.00648534 -0.999917</code></pre>
  27. <p>Not all AntTweakBar types are currently supported. See
  28. <code>igl/ReAntTweakbar.h</code> for an up-to-date list of supported
  29. types.</p>
  30. <p>See also: <a href=.>file formats</a></p>
  31. </div>
  32. </body>
  33. </html>