1
0
mirror of https://github.com/robonen/canvas-3d.git synced 2026-03-20 02:44:40 +00:00

feat(engine): integration rendering and inputs

This commit is contained in:
2022-11-26 04:48:51 +07:00
parent bca8e0aada
commit ae9661f4b1
7 changed files with 155 additions and 58 deletions

Binary file not shown.

View File

View File

@@ -1,2 +1,4 @@
export type Point = [number, number];
export type Vector = [Point, Point, Point];
export type Vec3 = [number, number, number];
export type Vec4 = [number, number, number, number];
export type Mat4 = [Vec4, Vec4, Vec4, Vec4];