Crate lyon_geom

source ·
Expand description

Simple 2D geometric primitives on top of euclid.

This crate is reexported in lyon.

Overview.

This crate implements some of the maths to work with:

  • lines and line segments,
  • quadratic and cubic bézier curves,
  • elliptic arcs,
  • triangles.

Flattening

Flattening is the action of approximating a curve with a succession of line segments.

The tolerance threshold taken as input by the flattening algorithms corresponds to the maximum distance between the curve and its linear approximation. The smaller the tolerance is, the more precise the approximation and the more segments are generated. This value is typically chosen in function of the zoom level.

The figure above shows a close up on a curve (the dotted line) and its linear approximation (the black segments). The tolerance threshold is represented by the light green area and the orange arrow.

Re-exports

pub use arrayvec;
pub use euclid;

Modules

Elliptic arc related maths and tools.

Structs

An angle in radians. An angle in radians
An elliptic arc curve segment.
Flag parameters for arcs as described by the SVG specification.
A 2d curve segment defined by four points: the beginning of the segment, two control points and the end of the segment.
An infinite line defined by a point and a vector.
A line defined by the equation a * x + b * y + c = 0; a * a + b * b = 1.
A linear segment.
A 2d curve segment defined by three points: the beginning of the segment, a control point and the end of the segment.
An elliptic arc curve segment using the SVG’s end-point notation.
A 2D triangle defined by three points a, b and c.

Traits

Common APIs to segment types.

Functions

Shorthand for Point::new(x, y).
Shorthand for Size::new(x, y).
Shorthand for Vector::new(x, y).

Type Definitions

Alias for euclid::default::Box2D
Alias for euclid::default::Point2D.
Alias for euclid::default::Rotation2D
Alias for euclid::default::Scale
Alias for euclid::default::Size2D.
Alias for euclid::default::Transform2D
Alias for euclid::default::Translation2D
Alias for euclid::default::Vector2D.