pub type Lines = Geom<LineGeom>;Expand description
Provides the information needed for a mesh to bind vertex attributes together and then organize those vertices into individual lines.
Aliased Type§
pub struct Lines {
pub name: Option<String>,
pub material: Option<String>,
pub count: usize,
pub inputs: InputList,
pub data: LineGeom,
pub extra: Vec<Extra>,
}Fields§
§name: Option<String>The text string name of this element.
material: Option<String>Declares a symbol for a material.
This symbol is bound to a material at the time of instantiation;
see Instance<Geometry> and BindMaterial.
If not specified then the lighting and shading results are application defined.
count: usizeThe number of line/triangle/polygon primitives.
inputs: InputListThe vertex attribute access information.
data: LineGeomThe specific data for the geometry element.
extra: Vec<Extra>Provides arbitrary additional information about this element.
Implementations§
Source§impl Lines
impl Lines
Sourcepub fn new(
material: Option<String>,
inputs: Vec<InputS>,
count: usize,
prim: Box<[u32]>,
) -> Self
pub fn new( material: Option<String>, inputs: Vec<InputS>, count: usize, prim: Box<[u32]>, ) -> Self
Construct a new Lines object from a data buffer.
The data buffer prim contains exactly count lines, consisting of 2 vertices,
each consisting of inputs.len() indices,
for a total of inputs.len() * 2 * count values.