0

円、長方形、線でシンプルな画像マーカーを作成しました。不要な形状を削除するにはどうすればよいですか。座標点を配列に保存しました。どうすれば助けを進めることができますか。ここにフィドルがあります

配列にプッシュする関数は次のとおりです

function onMouseUp(event) {
            console.log(cPath.points[0]);
            console.log(cPath.downpoints[0]);
            if(set == 1){
                i++;
                circles.push(circle);
                createElem('circle', i);
                cPath.points.push(event.point);
                cPath.downpoints.push((event.downPoint - event.point).length);
            }else if(set == 2){             j++;
                rects.push(rect);
                createElem('rect', j);
            }else if(set == 3){
                k++;
                lines.push(line);
                createElem('line', k);  
            }else if(set == 4){
                l++;
                createElem('Free Path', l);
            }
        };
4

1 に答える 1