[tech debt] Primitives renaming party / cleanup (#2396)

This PR:
- renames Vec2d to Vec
- renames Vec2dModel to VecModel
- renames Box2d to Box
- renames Box2dModel to BoxModel
- renames Matrix2d to Mat
- renames Matrix2dModel to MatModel
- removes unused primitive helpers
- removes unused exports
- removes a few redundant tests in dgreensp

### Change Type

- [x] `major` — Breaking change

### Release Notes

- renames Vec2d to Vec
- renames Vec2dModel to VecModel
- renames Box2d to Box
- renames Box2dModel to BoxModel
- renames Matrix2d to Mat
- renames Matrix2dModel to MatModel
- removes unused primitive helpers
This commit is contained in:
Steve Ruiz 2024-01-03 12:13:15 +00:00 committed by GitHub
parent afd5af1cb6
commit 6b1005ef71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
159 changed files with 4757 additions and 5319 deletions

View file

@ -202,8 +202,7 @@ interface Defaults<T> {
all: T
}
/** @internal */
export interface DebugFlagDef<T> {
interface DebugFlagDef<T> {
name: string
defaults: Defaults<T>
shouldStoreForSession: boolean