123456789101112131415161718192021222324 |
- /****************************************************************************
- * Parser error 056: Polygon created with more than 3 vertices.
- *
- * Expect an error on the line:
- * ELEMENT_CONNECTIONS { [0, 1, 2, 3] }
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- TIME_STEP = 1e-6
- degeneracy POLYGON_LIST
- {
- VERTEX_LIST
- {
- [0, 0, 0]
- [0, 0, 1]
- [0, 0, 2]
- [0, 0, 3]
- }
- ELEMENT_CONNECTIONS { [0, 1, 2, 3] }
- }
|