(type: DynoType)
| 182 | return type === "mat2" || type === "mat2x2"; |
| 183 | } |
| 184 | export function isMat3(type: DynoType): boolean { |
| 185 | return type === "mat3" || type === "mat3x3"; |
| 186 | } |
| 187 | export function isMat4(type: DynoType): boolean { |
| 188 | return type === "mat4" || type === "mat4x4"; |
| 189 | } |