[package]
name = "hyperbolic_drawing"
version = "1.0.0"
edition = "2021"
license = "0BSD"
description = "Manipulate and display elements of 2D hyperbolic space (ℍ²)"
repository = "https://github.com/verticallity/hyperbolic_drawing"
readme = "README.md"
keywords = ["hyperbolic", "geometry", "svg"]
categories = ["graphics", "mathematics"]
[dependencies]
plotters = { version = "0.3.7", optional = true }
svg = { version = "0.18.0", optional = true }
svg_fmt = { version = "0.4.4", optional = true }
[features]
default = ["svg", "svg_fmt"]
plotters = ["dep:plotters"]
svg = ["dep:svg"]
svg_fmt = ["dep:svg_fmt"]