invalid-085.mdl 629 B

1234567891011121314151617181920212223242526
  1. /****************************************************************************
  2. * Parser error 085: Attempt to create a patch on an already triangulated BOX
  3. * object.
  4. *
  5. * Expect an error regarding the line:
  6. * INCLUDE_PATCH = [0, 0, 0], [1, 1, 0]
  7. *
  8. * Author: Jed Wing <[email protected]>
  9. * Date: 2008-04-04
  10. ****************************************************************************/
  11. TIME_STEP = 1e-6
  12. vizdir = "dat/invalid-085"
  13. box1 BOX
  14. {
  15. CORNERS = [0, 0, 0], [1, 1, 1]
  16. ASPECT_RATIO = 6.0
  17. }
  18. DEFINE_SURFACE_REGIONS
  19. {
  20. box1[PATCHY]
  21. {
  22. INCLUDE_PATCH = [0, 0, 0], [1, 1, 0]
  23. }
  24. }