Struct dxf::Point [] [src]

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

Represents a simple point in Cartesian space.

Fields

The X value of the point.

The Y value of the point.

The Z value of the point.

Methods

impl Point
[src]

Creates a new Point with the specified values.

Returns a point representing the origin of (0, 0, 0).

Trait Implementations

impl Clone for Point
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Point
[src]

Formats the value using the given formatter.

impl Default for Point
[src]

Returns the "default value" for a type. Read more

impl PartialEq for Point
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.