ndarray_cg 0.4.0

High-performance computer graphics mathematics library based on ndarray with vectors, matrices, and transformations
Documentation
//! This module provides implementations for fundamental mathematical operations
//! such as addition, multiplication, and division, tailored for vector and matrix types.

mod private
{
  // Keeping this commented out as it might be needed in the future
  // use crate::*;
}

mod add;
mod mul;
mod div;

crate::mod_interface!
{
  orphan use
  {
    add::add,
    mul::mul,
    mul::mul_mat_vec,
    div::div_scalar
  };
}