pub struct AInterfacesInfo {
n_facet: Vec<usize>,
pub ids: Vec<InterfaceInfo>,
pub area: Vec<Vec<f64>>,
pub normal_axis: Vec<usize>,
pub global_id_from_interface: Vec<Vec<usize>>,
pub interface_theta: Vec<f64>,
}Fields§
§n_facet: Vec<usize>§ids: Vec<InterfaceInfo>§area: Vec<Vec<f64>>§normal_axis: Vec<usize>§global_id_from_interface: Vec<Vec<usize>>§interface_theta: Vec<f64>Implementations§
Source§impl AInterfacesInfo
impl AInterfacesInfo
pub fn n_interfaces(&self) -> usize
pub fn fill(&mut self, geometry: &CMGeometry, interface_count_raw: &[usize])
fn check_areas(&self, geometry: &CMGeometry)
fn count_interfaces_second_pass( &mut self, geometry: &CMGeometry, interfaces_id_from_cells: &[usize], ) -> Vec<Vec<usize>>
fn fill_area(&mut self, geometry: &CMGeometry, planes: &[BoundedPlane])
Auto Trait Implementations§
impl Freeze for AInterfacesInfo
impl RefUnwindSafe for AInterfacesInfo
impl Send for AInterfacesInfo
impl Sync for AInterfacesInfo
impl Unpin for AInterfacesInfo
impl UnsafeUnpin for AInterfacesInfo
impl UnwindSafe for AInterfacesInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.