invalid-056.mdl 528 B

123456789101112131415161718192021222324
  1. /****************************************************************************
  2. * Parser error 056: Polygon created with more than 3 vertices.
  3. *
  4. * Expect an error on the line:
  5. * ELEMENT_CONNECTIONS { [0, 1, 2, 3] }
  6. *
  7. * Author: Jed Wing <[email protected]>
  8. * Date: 2008-04-04
  9. ****************************************************************************/
  10. TIME_STEP = 1e-6
  11. degeneracy POLYGON_LIST
  12. {
  13. VERTEX_LIST
  14. {
  15. [0, 0, 0]
  16. [0, 0, 1]
  17. [0, 0, 2]
  18. [0, 0, 3]
  19. }
  20. ELEMENT_CONNECTIONS { [0, 1, 2, 3] }
  21. }