oxygengine-utils 0.14.1

Utilities module for Oxygen Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(feature = "parallel")]
extern crate rayon;
extern crate serde;

pub mod grid_2d;
pub mod noise_map_generator;

pub mod prelude {
    pub use crate::grid_2d::*;
    pub use crate::noise_map_generator::*;
}

#[cfg(feature = "scalar64")]
pub type Scalar = f64;
#[cfg(not(feature = "scalar64"))]
pub type Scalar = f32;