Reorganize stuff, vertex attribute types

This commit is contained in:
Szymon Nowakowski
2023-07-29 02:01:22 +02:00
committed by Szymon Nowakowski
parent 174201afc1
commit ee52894f52
22 changed files with 1052 additions and 328 deletions

16
src/data/index.ts Normal file
View File

@@ -0,0 +1,16 @@
/*!
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/.
*/
export * from "./Camera";
export * from "./Color";
export * from "./Matrix4x4";
export * from "./Mesh";
export * from "./Node";
export * from "./Quaternion";
export * from "./Scene";
export * from "./Vector2";
export * from "./Vector3";
export * from "./Vector4";