We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5607ce commit dcd1fe7Copy full SHA for dcd1fe7
CHANGELOG.md
@@ -1,5 +1,9 @@
1
## Changelog
2
3
+### Unreleased changes
4
+
5
+- Expose error type (fixes #9).
6
7
### 0.11.0 (2023-10-06)
8
9
- Add `f32` feature to use `f32` instead of `f64` for the input values and the computations (thanks to @hakolao).
src/lib.rs
@@ -77,6 +77,7 @@ pub type Ring = Vec<Pt>;
77
pub use crate::band::Band;
78
pub use crate::contour::Contour;
79
pub use crate::contourbuilder::ContourBuilder;
80
+pub use crate::error::{Error, ErrorKind, Result};
81
pub use crate::isoringbuilder::contour_rings;
82
pub use crate::line::Line;
83
0 commit comments