Skip to content

Commit

Permalink
Version 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nical committed Feb 24, 2019
1 parent 22f39c3 commit 542cadf
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 43 deletions.
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon"
version = "0.13.0"
version = "0.13.1"
description = "2D Graphics rendering on the GPU using tessellation."
authors = [ "Nicolas Silva <[email protected]>" ]
repository = "https://github.com/nical/lyon"
Expand Down Expand Up @@ -35,11 +35,11 @@ libtess2 = ["lyon_tess2"]

[dependencies]

lyon_tessellation = { version = "0.13.0", path = "tessellation/" }
lyon_algorithms = { version = "0.13.0", path = "algorithms/" }
lyon_tessellation = { version = "0.13.1", path = "tessellation/" }
lyon_algorithms = { version = "0.13.1", path = "algorithms/" }
lyon_extra = { version = "0.13.0", optional = true, path = "extra/" }
lyon_svg = { version = "0.13.0", optional = true, path = "svg/" }
lyon_tess2 = { version = "0.13.0", optional = true, path = "tess2/" }
lyon_tess2 = { version = "0.13.1", optional = true, path = "tess2/" }

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Lyon is *not* an SVG renderer. For now lyon mainly provides primitives to tessel

### How do I render the output of the tessellators?

Although the format of the output of the tessellators is customizable, the algorithms are designed to generate a vertex and an index buffer. See the [lyon::tessellation documentaton](https://docs.rs/lyon_tessellation/0.7.4/lyon_tessellation/#the-output-geometry-builders) for more details.
Although the format of the output of the tessellators is customizable, the algorithms are designed to generate a vertex and an index buffer. See the [lyon::tessellation documentation](https://docs.rs/lyon_tessellation/0.7.4/lyon_tessellation/#the-output-geometry-builders) for more details.

### Is anti-aliasing supported?

Expand Down
4 changes: 2 additions & 2 deletions algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_algorithms"
version = "0.13.0"
version = "0.13.1"
description = "2D Path manipulation/transformation algorithms."
authors = [ "Nicolas Silva <[email protected]>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -19,6 +19,6 @@ serialization = ["serde", "lyon_path/serialization"]

[dependencies]

lyon_path = { version = "0.13.0", path = "../path" }
lyon_path = { version = "0.13.1", path = "../path" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
sid = "0.5.2"
2 changes: 1 addition & 1 deletion geom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_geom"
version = "0.12.3"
version = "0.12.4"
description = "2D quadratic and cubic bézier arcs and line segment math on top of euclid."
authors = ["Nicolas Silva <[email protected]>"]
repository = "https://github.com/nical/lyon"
Expand Down
4 changes: 2 additions & 2 deletions path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_path"
version = "0.13.0"
version = "0.13.1"
description = "Types and utilities to store, build and iterate over 2D paths."
authors = [ "Nicolas Silva <[email protected]>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -15,5 +15,5 @@ name = "lyon_path"
serialization = ["serde", "lyon_geom/serialization"]

[dependencies]
lyon_geom = { version = "0.12.3", path = "../geom" }
lyon_geom = { version = "0.12.4", path = "../geom" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
4 changes: 2 additions & 2 deletions tess2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_tess2"
version = "0.13.0"
version = "0.13.1"
description = "An additional path tessellator for lyon using libtess2."
authors = [ "Nicolas Silva <[email protected]>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -19,6 +19,6 @@ serialization = ["serde", "lyon_tessellation/serialization"]

[dependencies]

lyon_tessellation = { version = "0.13.0", path = "../tessellation" }
lyon_tessellation = { version = "0.13.1", path = "../tessellation" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
tess2-sys = "0.0.1"
4 changes: 2 additions & 2 deletions tessellation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_tessellation"
version = "0.13.0"
version = "0.13.1"
description = "A low level path tessellation library."
authors = [ "Nicolas Silva <[email protected]>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -20,7 +20,7 @@ debugger = []

[dependencies]

lyon_path = { version = "0.13.0", path = "../path" }
lyon_path = { version = "0.13.1", path = "../path" }
sid = "0.5"
serde = { version = "1.0", optional = true, features = ["serde_derive"] }

Expand Down
6 changes: 3 additions & 3 deletions tessellation/src/geometry_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ pub trait GeometryBuilder<Input> {
fn end_geometry(&mut self) -> Count;

/// Inserts a vertex, providing its position, and optionally a normal.
/// Retuns a vertex id that is only valid between begin_geometry and end_geometry.
/// Returns a vertex id that is only valid between begin_geometry and end_geometry.
///
/// This method can only be called between begin_geometry and end_geometry.
fn add_vertex(&mut self, vertex: Input) -> Result<VertexId, GeometryBuilderError>;
Expand All @@ -263,7 +263,7 @@ pub trait GeometryBuilder<Input> {
/// This method can only be called between begin_geometry and end_geometry.
fn add_triangle(&mut self, a: VertexId, b: VertexId, c: VertexId);

/// abort_geometry is called instead of end_geometry if an error occured while producing
/// abort_geometry is called instead of end_geometry if an error occurred while producing
/// the geometry and we won't be able to finish.
///
/// The implementation is expected to discard the geometry that was generated since the last
Expand All @@ -288,7 +288,7 @@ pub trait GeometryReceiver<Vertex> {

/// Structure that holds the vertex and index data.
///
/// Usually writen into though temporary `BuffersBuilder` objects.
/// Usually written into though temporary `BuffersBuilder` objects.
#[derive(Clone, Debug, Default)]
#[cfg_attr(feature = "serialization", derive(Serialize, Deserialize))]
pub struct VertexBuffers<VertexType, IndexType> {
Expand Down

0 comments on commit 542cadf

Please sign in to comment.