Struct dxf::entities::Spline [] [src]

pub struct Spline {
    pub normal: Vector,
    pub flags: i32,
    pub degree_of_curve: i32,
    pub knot_tolerance: f64,
    pub control_point_tolerance: f64,
    pub fit_tolerance: f64,
    pub start_tangent: Point,
    pub end_tangent: Point,
    pub knot_values: Vec<f64>,
    pub weight: f64,
    pub control_points: Vec<Point>,
    pub fit_points: Vec<Point>,
    // some fields omitted
}

Fields

Methods

impl Spline
[src]

Trait Implementations

impl Clone for Spline
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Spline
[src]

Formats the value using the given formatter.

impl PartialEq for Spline
[src]

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

This method tests for !=.

impl Default for Spline
[src]

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