rename FullyGenericMaterial -> GenericMaterial

this naming was an artifact from the separate CPU/GPU material implementations.
This commit is contained in:
2022-12-07 09:46:33 +00:00
parent 6d73150fb6
commit 859a7f8b18
10 changed files with 61 additions and 61 deletions

View File

@@ -1,6 +1,6 @@
use crate::diagnostics::SyncDiagnostics;
use crate::geom::{Coord, Cube, Index, InvertedRegion, Region};
use crate::cross::mat::{FullyGenericMaterial, Material};
use crate::cross::mat::{GenericMaterial, Material};
use crate::cross::real::Real;
use crate::cross::step::SimMeta;
use crate::cross::vec::{Vec3, Vec3u};
@@ -14,7 +14,7 @@ pub mod units;
use spirv::{CpuBackend, SpirvSim};
pub type GenericSim<R> = SpirvSim<R, FullyGenericMaterial<R>, CpuBackend>;
pub type GenericSim<R> = SpirvSim<R, GenericMaterial<R>, CpuBackend>;
/// Conceptually, one cell looks like this (in 2d):