feat(all): init commit

This commit is contained in:
plum
2026-04-19 18:46:28 +08:00
commit 5d7f479765
479 changed files with 178500 additions and 0 deletions
@@ -0,0 +1,6 @@
import * as THREE from "three/webgpu";
import {get} from "lodash-es";
export const isTetrahedronGeometry = (value: unknown): value is THREE.TetrahedronGeometry => {
return get(value, 'type') === 'TetrahedronGeometry';
}