Example Camera

This commit is contained in:
2026-06-01 23:04:55 -05:00
parent b14196ff0d
commit d73edb403f
11 changed files with 436 additions and 22 deletions
+15
View File
@@ -0,0 +1,15 @@
/**
* Copyright (c) 2026 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
/** A three-component float vector (x, y, z). */
declare class Vec3 {
constructor(x?: number, y?: number, z?: number);
x: number;
y: number;
z: number;
toString(): string;
}