[][src]Struct mgf::ConvexMesh

pub struct ConvexMesh {
    pub x: Vector3<f32>,
    pub sum: Vector3<f32>,
    pub verts: Vec<Point3<f32>>,
}

A closed convex mesh. Represented by a point soup.

Fields

x: Vector3<f32>sum: Vector3<f32>verts: Vec<Point3<f32>>

Methods

impl ConvexMesh[src]

pub fn new() -> Self[src]

pub fn with_capacity(cap: usize) -> Self[src]

pub fn push(&mut self, p: Point3<f32>)[src]

Trait Implementations

impl Shape for ConvexMesh[src]

fn set_pos(&mut self, p: Point3<f32>)[src]

Sets the center of the shape to p.

impl Volumetric for ConvexMesh[src]

fn rotate_about<R: Rotation3<f32>>(self, r: R, p: Point3<f32>) -> Self[src]

Rotates the object around a point.

impl Convex<Point3<f32>> for ConvexMesh[src]

impl From<Vec<Point3<f32>>> for ConvexMesh[src]

impl Clone for ConvexMesh[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl AddAssign<Vector3<f32>> for ConvexMesh[src]

impl SubAssign<Vector3<f32>> for ConvexMesh[src]

Auto Trait Implementations

impl Send for ConvexMesh

impl Sync for ConvexMesh

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.