ndarray_tools 0.1.0

Math for computer graphics based on `ndarray`. The approach used in ndarray for computer graphics math is highly flexible and performant, even though there are many specialized crates focused on game development and computer graphics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![ doc = include_str!( "../readme.md" ) ]

use ::mod_interface::mod_interface;

mod private
{
  // use super::*;
}

crate::mod_interface!
{
  /// Reusing main crate.
  reuse ::ndarray_cg;
}