Enum libosu::SliderSplineKind[][src]

pub enum SliderSplineKind {
    Linear,
    Bezier,
    Catmull,
    Perfect,
}

Distinguishes between different types of slider splines.

Variants

Linear is the most straightforward, and literally consists of two endpoints.

Bezier is more complex, using control points to create smooth curves.

Catmull is a deprecated slider spline used mainly in older maps (looks ugly btw).

Perfect (circle) splines are circles circumscribed around three control points.

Trait Implementations

impl Clone for SliderSplineKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SliderSplineKind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations