mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-17 05:49:30 -07:00
9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
import { Matrix } from "./Matrix";
|
|
import inclusions from "./inclusions";
|
|
import * as reglRenderer from "./regl/main";
|
|
import * as webgpuRenderer from "./webgpu/main";
|
|
globalThis.inclusions = inclusions;
|
|
globalThis.reglRenderer = reglRenderer;
|
|
globalThis.webgpuRenderer = webgpuRenderer;
|
|
globalThis.Matrix = Matrix;
|