53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Distance Field Demo</title>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
position: relative;
|
|
margin: 0;
|
|
}
|
|
|
|
fc-geometry {
|
|
background: transparent;
|
|
position: absolute;
|
|
}
|
|
|
|
distance-field canvas {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<distance-field>
|
|
<fc-geometry x="100" y="100" width="50" height="50"></fc-geometry>
|
|
<fc-geometry x="100" y="200" width="50" height="50"></fc-geometry>
|
|
<fc-geometry x="100" y="300" width="50" height="50"></fc-geometry>
|
|
<fc-geometry x="300" y="150" width="80" height="40"></fc-geometry>
|
|
<fc-geometry x="400" y="250" width="60" height="90"></fc-geometry>
|
|
<fc-geometry x="200" y="400" width="100" height="100"></fc-geometry>
|
|
<fc-geometry x="500" y="100" width="30" height="70"></fc-geometry>
|
|
</distance-field>
|
|
|
|
<script type="module">
|
|
import { FolkGeometry } from '../src/canvas/fc-geometry.ts';
|
|
import { DistanceField } from '../src/distanceField/distance-field.ts';
|
|
|
|
FolkGeometry.define();
|
|
DistanceField.define();
|
|
</script>
|
|
</body>
|
|
</html>
|