1
0
mirror of https://github.com/robonen/canvas-3d.git synced 2026-06-20 01:55:19 +00:00

feat(engine): rendering experiments

This commit is contained in:
2022-11-23 22:16:56 +07:00
parent 2d891c76cd
commit 9a5c028ac0
6 changed files with 171 additions and 10 deletions
+1
View File
@@ -0,0 +1 @@
import {Vector} from './types';
+2
View File
@@ -0,0 +1,2 @@
export type Point = [number, number];
export type Vector = [Point, Point, Point];