Enum afi::PathOp

source ·
pub enum PathOp {
    Move(f32f32f32),
    Line(f32f32f32),
    Quad(f32f32f32f32f32f32),
    Cubic(f32f32f32f32f32f32f32f32f32),
    Width(f32),
}
Expand description

3D Path operation for vector graphics.

Variants§

§

Move(f32f32f32)

Move somewhere else / start drawing new shape (x, y, z).

§

Line(f32f32f32)

Next point in edge (x, y, z).

§

Quad(f32f32f32f32f32f32)

Qaudratic curve (cx, cy, cz, x, y, z).

§

Cubic(f32f32f32f32f32f32f32f32f32)

Cubic curve (c1x, c1y, c1z, c2x, c2y, c2z, x, y, z).

§

Width(f32)

Change the Pen / Stroke Width (width).

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.