microcad-lang 0.5.0

µcad language
Documentation
// Copyright © 2025-2026 The µcad authors <info@microcad.xyz>
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Matrix value type

use microcad_core::Scalar;

use crate::ty::*;

/// Matrix type
#[derive(Debug, Clone, PartialEq)]
pub enum Matrix {
    /// 2x2 matrix.
    Matrix2(microcad_core::Mat2),
    /// 3x3 matrix.
    Matrix3(microcad_core::Mat3),
    /// 4x4 matrix.
    Matrix4(microcad_core::Mat4),
}

impl Ty for Matrix {
    fn ty(&self) -> Type {
        match self {
            Matrix::Matrix2(_) => Type::Matrix(MatrixType::new(2, 2)),
            Matrix::Matrix3(_) => Type::Matrix(MatrixType::new(3, 3)),
            Matrix::Matrix4(_) => Type::Matrix(MatrixType::new(4, 4)),
        }
    }
}

impl std::fmt::Display for Matrix {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Matrix::Matrix2(matrix2) => write!(f, "{matrix2:?}"),
            Matrix::Matrix3(matrix3) => write!(f, "{matrix3:?}"),
            Matrix::Matrix4(matrix4) => write!(f, "{matrix4:?}"),
        }
    }
}

impl std::hash::Hash for Matrix {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        match self {
            Matrix::Matrix2(matrix2) => {
                let slice: &[Scalar; 4] = matrix2.as_ref();
                bytemuck::bytes_of(slice).hash(state);
            }
            Matrix::Matrix3(matrix3) => {
                let slice: &[Scalar; 9] = matrix3.as_ref();
                bytemuck::bytes_of(slice).hash(state);
            }
            Matrix::Matrix4(matrix4) => {
                let slice: &[Scalar; 16] = matrix4.as_ref();
                bytemuck::bytes_of(slice).hash(state);
            }
        }
    }
}