Page 1 of 1

crash

Posted: Thu Jun 26, 2008 8:14 pm
by sicvolo
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.

Re: crash

Posted: Fri Jun 27, 2008 11:19 am
by MtnViewJohn
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.