felt_mural
a proof-of-concept Svelte component for collaborative drawing using Felt
npm i -D @feltjs/felt_mural

Mural

<Mural
	width="750px"
	height="512px"
	scale={undefined}
	pointer_x={undefined}
	pointer_y={undefined}
	pointer_down={undefined}
>
	<Mural_Item_List
		items={[ ... ]}
	/>
</Mural>

Scaled

<Scaled
	width={1024}
	height={128}
>
	...
</Scaled>
1024x128
128x1024
1024x128

Surface

⚠️ this is not a good abstraction for this usecase! it's quick and hacky
<Scaled
	width="512px"
	height="512px"
>
	<Surface
		scale={0}
		pointing={undefined}
		pointer_down={undefined}
		pointer_x={undefined}
		pointer_y={undefined}
	/>
</Scaled>