(type: DynoType)
| 185 | return type === "mat3" || type === "mat3x3"; |
| 186 | } |
| 187 | export function isMat4(type: DynoType): boolean { |
| 188 | return type === "mat4" || type === "mat4x4"; |
| 189 | } |
| 190 | |
| 191 | export function vectorElementType<A extends VectorTypes>( |
| 192 | type: A, |