If you're having trouble using Context Free or don't understand the language, ask for help here.
Moderators: MtnViewJohn , chris , mtnviewmark
sicvolo
Posts: 8 Joined: Sat May 03, 2008 12:08 am
Post
by sicvolo » Thu Jun 26, 2008 8:14 pm
CFA 2.2beta2 (v16) crashes under windows running this
Code: Select all
startshape dot
path dot {
5* {r 72} {
MOVETO {x 0 y 0}
LINETO {x .5 y 0}
}
STROKE {}
}
But works ok with this:
Code: Select all
startshape dot
path dot {
MOVETO {x 0 y 0}
5* {r 72} {
MOVETO {x 0 y 0}
LINETO {x .5 y 0}
}
STROKE {}
}
1. There should not be a need to specify the first start point, it's 0,0 right?
2. Showing an error message would be a bit better than crashing.
MtnViewJohn
Site Admin
Posts: 882 Joined: Fri May 06, 2005 2:26 pm
Location: Mountain View, California
Contact:
Post
by MtnViewJohn » Fri Jun 27, 2008 11:19 am
sicvolo wrote: 1. There should not be a need to specify the first start point, it's 0,0 right?
2. Showing an error message would be a bit better than crashing.
Yes and yes. I will get right on it.