mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
30 lines
No EOL
799 B
HTML
30 lines
No EOL
799 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Fitting</title>
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
<script type="text/javascript" src="../../dist/paper.js"></script>
|
|
<script type="text/paperscript" canvas="canvas">
|
|
var blackPath = new Path.Circle(new Point(), 10);
|
|
blackPath.fillColor = 'black';
|
|
|
|
var redPath = new Path.Circle(new Point(), 10);
|
|
redPath.fillColor = 'red';
|
|
|
|
function onResize() {
|
|
// Whenever the view is resized:
|
|
|
|
// Fit the black path, so it covers the view:
|
|
blackPath.fitBounds(view.bounds, true);
|
|
|
|
// Fit the red path, so it fits inside the view:
|
|
redPath.fitBounds(view.bounds);
|
|
}
|
|
onResize();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas" resize></canvas>
|
|
</body>
|
|
</html> |