invalid-079.mdl 654 B

1234567891011121314151617181920212223242526
  1. /****************************************************************************
  2. * Parser error 079: DX-mode name list contains meshes without state values
  3. *
  4. * Expect an error regarding the line:
  5. * NAME_LIST { world.box1 }
  6. *
  7. * Author: Jed Wing <[email protected]>
  8. * Date: 2008-04-04
  9. ****************************************************************************/
  10. TIME_STEP = 1e-6
  11. vizdir = "dat/invalid-079/"
  12. INSTANTIATE world OBJECT {
  13. box1 BOX { CORNERS = [0, 0, 0], [1, 1, 1] }
  14. }
  15. VIZ_OUTPUT
  16. {
  17. MODE = DX
  18. FILENAME = vizdir & "world"
  19. MESHES
  20. {
  21. NAME_LIST { world.box1 }
  22. TIME_POINTS { ALL_DATA @ ALL_TIMES }
  23. }
  24. }