Skip to content

Commit

Permalink
Add clippy to cspell.json and update README.md with CI and rust-clipp…
Browse files Browse the repository at this point in the history
…y badges

- Add "clippy" to the "words" list in cspell.json
- Update README.md with CI and rust-clippy badges
  • Loading branch information
acgetchell committed Dec 15, 2023
1 parent 5b6d76b commit 10cc4bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
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
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"words": [
"acgetchell",
"CGAL",
"clippy",
"Voronoi"
],
"ignoreWords": [],
Expand Down

0 comments on commit 10cc4bd

Please sign in to comment.