DSchroer / dslcad

DSLCad is a programming language & interpreter for building 3D models.
https://dslcad.com
GNU Lesser General Public License v2.1
470 stars 14 forks source link

Lines do not render points #1

Closed DSchroer closed 1 year ago

DSchroer commented 1 year ago
face(parts=[
        point(x=0, y=0),
        point(x=0, y=15)
        point(x=25, y=15)
        point(x=25, y=0)
    ]);

If you render this, it does not display the points.

DSchroer commented 1 year ago

In addition, , seems to be optional in lists.

DSchroer commented 1 year ago

Should be fixed now.