Files
rough/visual-tests/svg/rectangle2.html
2023-11-19 13:06:11 -08:00

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>