Struct plexus::encoding::ply::ElementDefinition
[−]pub struct ElementDefinition {
pub name: String,
pub count: usize,
pub properties: LinkedHashMap<String, PropertyDef, RandomState>,
}
Expand description
Models the definition of an element.
Elements describe single entities consisting of different properties. A single point is an element. We might model it as consisting of three coordinates: x, y, and z. Usually, one finds a list of elements in a ply file.
Fields
name: String
Name of the element.
Each element within a PLY file needs a unique name. There are common conventions like using “vertex” and “face” to assure interoperability between applications. For further information, please consult your target applications or the original specification.
count: usize
Describes, how many elements appear in a PLY file.
The count
is used when reading since we need to know how many elements we should interprete as having this type.
The count
is also needed for writing, since it will be written to the header.
properties: LinkedHashMap<String, PropertyDef, RandomState>
An element is modeled by multiple properties, those are named values or lists.
Examples
- Point: We can define a point by its three coordinates. Hence we have three properties: x, y, and z. Reasonable types would be float or double.
- Polygon: A polygon can be defined as a list of points. Since the points are stored in a list, we can define a list of indices. Good types would be some of the unsigned integer lists.
Implementations
impl ElementDef
impl ElementDef
pub fn new(name: String) -> ElementDef
pub fn new(name: String) -> ElementDef
Creates a new element definition.
The name should be unique for each element in a PLY file.
You should never need to set count
manuall, since it is set by the consistency check (see make_consistent()
of Ply
).
No properties are set.
Trait Implementations
impl Clone for ElementDef
impl Clone for ElementDef
fn clone(&self) -> ElementDef
fn clone(&self) -> ElementDef
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for ElementDef
impl Debug for ElementDef
impl Key for ElementDef
impl Key for ElementDef
impl PartialEq<ElementDef> for ElementDef
impl PartialEq<ElementDef> for ElementDef
fn eq(&self, other: &ElementDef) -> bool
fn eq(&self, other: &ElementDef) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &ElementDef) -> bool
fn ne(&self, other: &ElementDef) -> bool
This method tests for !=
.
impl Eq for ElementDef
impl StructuralEq for ElementDef
impl StructuralPartialEq for ElementDef
Auto Trait Implementations
impl RefUnwindSafe for ElementDef
impl Send for ElementDef
impl Sync for ElementDef
impl Unpin for ElementDef
impl UnwindSafe for ElementDef
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> FromGeometry<T> for T
impl<T> FromGeometry<T> for T
fn from_geometry(other: T) -> T
sourceimpl<T, U> IntoGeometry<U> for T where
U: FromGeometry<T>,
impl<T, U> IntoGeometry<U> for T where
U: FromGeometry<T>,
fn into_geometry(self) -> U
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SP where
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.