svn path=/trunk/; revision=119
function drawstop() {
// if path ends close to beginning ( < 50 px); then close path and fill
function drawstop() {
// if path ends close to beginning ( < 50 px); then close path and fill
- if ( mouse == 1 && Math.sqrt( Math.pow(stx - cux, 2) + Math.pow(sty - cuy, 2)) <= 50 ){
+ if ( mouse == 1 && Math.sqrt( Math.pow(stx - cux, 2) + Math.pow(sty - cuy, 2)) <= 50 && c !== "#FFF" ){
image.lineTo( stx, sty )
image.stroke()
image.lineTo( stx, sty )
image.stroke()