paperjsを使用して複数の円を描くにはどうすればよいですか? 私はpath.removeOnDrag()
それを削除しようとしましたが、削除した後fillcolor
は動作しますが、出力は期待どおりではありません。
<script type="text/paperscript" canvas="canvas">
function onMouseDrag(event) {
// The radius is the distance between the position
// where the user clicked and the current position
// of the mouse.
var path = new Path.Circle({
center: event.downPoint,
radius: (event.downPoint - event.point).length,
fillColor: null,
strokeColor: 'black',
strokeWidth: 10
});
// Remove this path on the next drag event:
path.removeOnDrag();
};
</script>