mirror of
https://github.com/rough-stuff/rough.git
synced 2026-01-14 08:57:56 -05:00
22 lines
434 B
HTML
22 lines
434 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>RoughJS sample</title>
|
|
<script src="../dist/rough.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
|
|
<script>
|
|
(() => {
|
|
const rough = new RoughCanvas(document.getElementById('canvas'), 800, 800);
|
|
rough.rectangle(5, 5, 90, 90);
|
|
rough.circle(80, 170, 50);
|
|
rough.ellipse(300, 100, 150, 80);
|
|
rough.line(80, 170, 300, 100);
|
|
})();
|
|
</script>
|
|
</body>
|
|
|
|
</html> |