Struct dae_parser::TriFanGeom [−][src]
Expand description
The data for a TriFans
element.
Each triangle described by the mesh has three vertices. The first triangle is formed from the first, second, and third vertices. Each subsequent triangle is formed from the current vertex, reusing the first and the previous vertices.
Fields
prim: Vec<Box<[u32]>>
Contains indices that describe the vertex attributes for an
arbitrary number of connected triangles.
The indices reference into the parent’s Source
elements that are
referenced by the InputS
elements.
Methods from Deref<Target = Vec<Box<[u32]>>>
Returns the number of elements the vector can hold without reallocating.
Examples
let vec: Vec<i32> = Vec::with_capacity(10);
assert_eq!(vec.capacity(), 10);
Extracts a slice containing the entire vector.
Equivalent to &s[..]
.
Examples
use std::io::{self, Write};
let buffer = vec![1, 2, 3, 5, 8];
io::sink().write(buffer.as_slice()).unwrap();
Returns a raw pointer to the vector’s buffer.
The caller must ensure that the vector outlives the pointer this function returns, or else it will end up pointing to garbage. Modifying the vector may cause its buffer to be reallocated, which would also make any pointers to it invalid.
The caller must also ensure that the memory the pointer (non-transitively) points to
is never written to (except inside an UnsafeCell
) using this pointer or any pointer
derived from it. If you need to mutate the contents of the slice, use as_mut_ptr
.
Examples
let x = vec![1, 2, 4];
let x_ptr = x.as_ptr();
unsafe {
for i in 0..x.len() {
assert_eq!(*x_ptr.add(i), 1 << i);
}
}
🔬 This is a nightly-only experimental API. (allocator_api
)
allocator_api
)Returns a reference to the underlying allocator.
Returns the number of elements in the vector, also referred to as its ‘length’.
Examples
let a = vec![1, 2, 3];
assert_eq!(a.len(), 3);
Trait Implementations
Returns the “default value” for a type. Read more
Parse the data from an element iterator.
Auto Trait Implementations
impl RefUnwindSafe for TriFanGeom
impl Send for TriFanGeom
impl Sync for TriFanGeom
impl Unpin for TriFanGeom
impl UnwindSafe for TriFanGeom
Blanket Implementations
Mutably borrows from an owned value. Read more