如何对使用onMouseDrag绘制的圆应用拖放。Look at the fiddle
发布于 2013-06-02 04:57:47
带有粗略的拖放演示的Here is a fiddle。通常,鼠标工具有两种模式:绘制和拖动。小提琴中的状态管理很弱,编写一个合适的鼠标工具需要更深入地了解paper.js。
<script type="text/paperscript" canvas="canvas">
var path = null;
var circles = [];
// Mouse tool state
var isDrawing = false;
var draggingIndex = -1;
function onMouseDrag(event) {
// Maybe hit test to see if we are on top of a circle
if (!isDrawing && circles.length > 0) {
for (var ix = 0; ix < circles.length; ix++) {
if (circles[ix].contains(event.point)) {
draggingIndex = ix;
break;
}
}
}
// Should we be dragging something?
if (draggingIndex > -1) {
circles[draggingIndex].position = event.point;
} else {
// We are drawing
path = new Path.Circle({
center: event.downPoint,
radius: (event.downPoint - event.point).length,
fillColor: null,
strokeColor: 'black',
strokeWidth: 10
});
path.removeOnDrag();
isDrawing = true;
}
};
function onMouseUp(event) {
if (isDrawing) {
circles.push(path);
}
// Reset the tool state
isDrawing = false;
draggingIndex = -1;
};
</script>
<canvas id="canvas"></canvas>https://stackoverflow.com/questions/16876253
复制相似问题