Struct lambert::Point [] [src]

pub struct Point {
    pub x: f32,
    pub y: f32,
    pub z: f32,
}

The Point struct represents a point in space

Fields

Methods

impl Point
[src]

[src]

new creates a new Point.

[src]

convert_unit converts the point between units.

[src]

Converts a point in meter coordinates to radians.

Trait Implementations

impl Clone for Point
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Point
[src]

Auto Trait Implementations

impl Send for Point

impl Sync for Point