-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add clippy to cspell.json and update README.md with CI and rust-clipp…
…y badges - Add "clippy" to the "words" list in cspell.json - Update README.md with CI and rust-clippy badges
- Loading branch information
1 parent
5b6d76b
commit 10cc4bd
Showing
2 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
# d-delaunay | ||
|
||
[![CI](https://github.com/acgetchell/d-delaunay/actions/workflows/ci.yml/badge.svg)](https://github.com/acgetchell/d-delaunay/actions/workflows/ci.yml) | ||
[![rust-clippy analyze](https://github.com/acgetchell/d-delaunay/actions/workflows/rust-clippy.yml/badge.svg)](https://github.com/acgetchell/d-delaunay/actions/workflows/rust-clippy.yml) | ||
|
||
D-dimensional Delaunay triangulations in Rust, inspired by [CGAL]. | ||
|
||
## Introduction | ||
|
||
This library implements d-dimensional Delaunay triangulations and CGAL-like features in Rust. It is inspired by the [CGAL] library, which is a C++ library for computational geometry; and [Spade], a Rust library implementing 2D Delaunay triangulations, Constrained Delaunay triangulations, and Voronoi diagrams. The eventual goal of this library is to provide a lightweight Rust alternative to [CGAL]. | ||
|
||
At some point I may merge it into another library, such as [Spade], or [delaunay], but for now I am developing this without trying to figure out how to fit into the coding style and standards of another library. | ||
|
||
[CGAL]: https://www.cgal.org/ | ||
[Spade]: https://github.com/Stoeoef/spade | ||
[delaunay]: https://crates.io/crates/delaunay |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
"words": [ | ||
"acgetchell", | ||
"CGAL", | ||
"clippy", | ||
"Voronoi" | ||
], | ||
"ignoreWords": [], | ||
|