Skip to content

Commit dbb356e

Browse files
committed
Bump version to 0.0.5 and update documentation
- Updated version in Cargo.toml and Cargo.lock to 0.0.5. - Enhanced README.md to reflect the new version. - Added `points_order` function to compute the orientation of three points. - Included comprehensive tests for `points_order` covering various cases. - Cleaned up whitespace and formatting in arc.rs and point.rs for consistency.
1 parent 3a11a73 commit dbb356e

6 files changed

Lines changed: 366 additions & 196 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "base-geom"
33
description = "A library for 2D geometry, providing robust geometric algorithms and data structures."
4-
version = "0.0.4"
4+
version = "0.0.5"
55
rust-version = "1.88"
66
edition = "2024"
77
categories = ["algorithms", "data-structures", "graphics", "mathematics"]

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44

55
## Basic 2D geometric operations
66

7-
The intention of this library is to provide a foundation for 2D geometric operations,
8-
including distance computations, intersection tests.
7+
The intention of this library is to provide a foundation for 2D geometric operations.
8+
It includes mostly basic operations like point manipulation and distance/intersection
9+
between line segments and circle arcs.
910

1011
It is intended for use in my other projects, and **may not implement** all possible geometric operations.
1112

@@ -14,7 +15,7 @@ It is intended for use in my other projects, and **may not implement** all possi
1415

1516
Add to Cargo.toml
1617
```
17-
base-geom = "0.0.1"
18+
base-geom = "0.0.5"
1819
```
1920

2021
### Creating and working with points (vectors)

0 commit comments

Comments
 (0)