<!DOCTYPE html>
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>Text Testing</title>
	<link rel="stylesheet" href="../css/style.css">
	<script type="text/javascript" src="../../dist/paper.js"></script>
	<script type="text/paperscript" canvas="canvas">
		var text = new PointText(new Point(50, 100));
		text.fillColor = 'black';
		text.content = 'This is a test';
		
		var text = new PointText(new Point(100, 150));
		text.fillColor = 'red';
		text.strokeWidth = '4';
		text.content = 'This is also a test';
		/*
		text.scale(5);
		text.translate(15, 15);
		text.rotate(20);
		text.shear(20, 5);
		*/
		text.rotate(45);
		text.shear(.85, .15);
		text.scale(.85, 2);
		
		var path2 = new Path.Circle(new Point(100, 100), 50);
		path2.strokeColor = 'black';
		path2.shear(.5, .5);
		colors = ['red', 'blue', 'green', 'orange'];
		for (var i in path2.segments) {
			var p = path2.segments[i].point;
			var c = new Path.Circle(p, 2);
			c.fillColor = colors[i];
		}		

		document.getElementById('svg').appendChild(project.exportSvg());
	</script>
</head>
<body>
	<canvas id="canvas" width="500" height="500"></canvas>
	<svg id="svg" width="500" height="500"></svg>
</body>
</html>