Giter Club home page Giter Club logo

Comments (5)

lehni avatar lehni commented on August 18, 2024

Yes this is a known issue. Only one tool is supported at the moment. This will be worked on soon.

from paper.js.

bgrins avatar bgrins commented on August 18, 2024

OK, can I help with this case? I feel like commenting out the paper = scope line would lead to a lot of other problems. Any pointers?

from paper.js.

coldclinic avatar coldclinic commented on August 18, 2024

How do I draw shapes so that when I press the left mouse button and move, I show the border / contour of a possible future figure?

from paper.js.

coldclinic avatar coldclinic commented on August 18, 2024

tried to start the commented code, but it does not work. I need it to work, as in the code below, but with several tools.


/*
var path;

var toolCircle = new Tool();
toolCircle.activate();
// Only execute onMouseDrag when the mouse
// has moved at least 10 points:
toolCircle.minDistance = 10;


toolCircle.onMouseDown = function(event) {
    // Create a new path every time the mouse is clicked
	path = new Path.Circle({
			center: 	 event.downPoint,
			radius: 	 (event.downPoint - event.point).length,
			strokeColor: 'red'
			});

	path.removeOnDrag();    
}

toolCircle.onMouseDrag = function(event) {
    // Add a point to the path every time the mouse is dragged
    path.add(event.point);
}

function onResize(event) {
	// Whenever the window is resized, recenter the path:
	//path.position = view.center;
}

paper.view.draw();
*/

			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: 'white',
					strokeColor: 'black'
				});

				// Remove this path on the next drag event:
				path.removeOnDrag();
			};

from paper.js.

coldclinic avatar coldclinic commented on August 18, 2024

figured out, but now another problem. It is impossible to activate the tool.

<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>Circles</title>
	<script type="text/javascript" src="paper.js"></script>
	<script type="text/paperscript" canvas="canvas">

 	var toolCircle;
	var toolRectangle;

	//window.onload = function() {

	//	paper.setup('canvas');
		var path;

		toolCircle = new Tool();
		toolCircle.activate();
		toolCircle.minDistance = 10;

		toolCircle.onMouseDrag = function(event) {

			var path = new Path.Circle({
						center: event.downPoint,
						radius: (event.downPoint - event.point).length,
						strokeColor: 'red'
					});

					path.removeOnDrag();    

		}

		toolRectangle = new Tool();
		toolRectangle.minDistance = 10;

		toolRectangle.onMouseDrag = function(event) {

		var rectangle = new Rectangle(event.downPoint, event.point);
		var pathRect = new Path.Rectangle(rectangle);

			pathRect.strokeColor = 'red';

		}

		paper.view.draw();
	//}

	</script>
	<style>
		ul.hor_nav {
		margin: 0;
		padding: 0;
		height: 200px;
		}

	   li { 
	    list-style-image: url(check.png);
	    display: inline;
		margin-right: 4px;
		padding: 2px;    
	   }
	   canvas {
	   	border: 1px solid gray;
	   }		
	</style>
</head>
<body>
	<canvas id="canvas" width="800" height="600"></canvas>
	<div>
		<ul class="hor_nav">
			<li><a href="javascript:void(0)" class="button button-primary" target="_blank" onclick="toolCircle.activate(); return false">Circle</a></li>
			<li><a href="javascript:void(0)" class="button button-primary" target="_blank" onclick="toolRectangle.activate(); return false">Rectangle</a></li>
		</ul>		
	</div>
</body>
</html>

from paper.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.