ndarray_cg 0.4.0

High-performance computer graphics mathematics library based on ndarray with vectors, matrices, and transformations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This module serves as a central interface for accessing and managing data within
//! various structures. It organizes functionalities into distinct layers for clarity and modularity,
//! separating data access from attribute management.

mod private
{
}

crate::mod_interface!
{

  /// Defines traits and methods for accessing the components or elements of data structures.
  layer access;
  /// Defines traits and methods for getting and setting specific attributes or properties.
  layer attribute;

}