Skip to content

Commit

Permalink
Updated readme and some documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Stoeoef committed May 22, 2024
1 parent 7ee290c commit 0e2aea0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.8.0] - 2024-05-22

### Added
- Added `LineIntersectionIterator` and `Intersection`
- Added `Cdt::get_conflicting_edges_between_vertices` and `Cdt::get_conflicting_edges_between_points`

## [2.7.0] - 2024-05-17

### Added
Expand Down Expand Up @@ -314,6 +320,8 @@ A lot has changed for the 1.0. release, only larger changes are shown.
## 0.1.0 - 2016-09-23
Initial commit

[2.8.0]: https://github.com/Stoeoef/spade/compare/v2.7.0...v2.8.0

[2.7.0]: https://github.com/Stoeoef/spade/compare/v2.6.0...v2.7.0

[2.6.0]: https://github.com/Stoeoef/spade/compare/v2.5.1...v2.6.0
Expand Down
8 changes: 8 additions & 0 deletions src/cdt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,10 @@ where
}

/// Returns all constraint edges that would prevent creating a new constraint between two points.
///
/// # See also
///
/// See also [Self::get_conflicting_edges_between_vertices]
pub fn get_conflicting_edges_between_points(
&self,
from: Point2<<V as HasPosition>::Scalar>,
Expand All @@ -734,6 +738,10 @@ where

/// Returns all constraint edges that would prevent inserting a new constraint connecting two existing
/// vertices.
///
/// # See also
///
/// See also [Self::get_conflicting_edges_between_points]
pub fn get_conflicting_edges_between_vertices(
&self,
from: FixedVertexHandle,
Expand Down

0 comments on commit 0e2aea0

Please sign in to comment.