mirror of
https://github.com/rough-stuff/rough.git
synced 2026-01-14 17:07:58 -05:00
26 lines
544 B
HTML
26 lines
544 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
|
|
<title>RoughJS Rectangle</title>
|
|
</head>
|
|
|
|
<body>
|
|
<svg width="800" height="800"></svg>
|
|
|
|
<script type="module">
|
|
import rough from '../../bin/rough.js';
|
|
const svg = document.querySelector('svg');
|
|
const rc = rough.svg(svg);
|
|
|
|
svg.appendChild(rc.rectangle(10, 10, 280, 280, {
|
|
fill: 'red',
|
|
hachureGap: 1.7
|
|
}));
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |