Crates.io | geo-offset |
lib.rs | geo-offset |
version | 0.3.0 |
source | src |
created_at | 2019-07-03 09:08:46.980276 |
updated_at | 2021-04-25 13:53:59.20185 |
description | Add margin and padding to geometric shapes |
homepage | |
repository | https://github.com/lelongg/geo-offset |
max_upload_size | |
id | 145593 |
size | 42,822 |
This crate contains algorithms to shrink and dilate various geometric shapes.
This code is a Rust port of the JS lib polygon-offset.
The following example shows how to compute an inflated line.
The offset
method is provided by the Offset
trait which is implemented for most geo-types.
use geo_types::{Coordinate, Line};
use geo_offset::Offset;
let line = Line::new(
Coordinate { x: 0.0, y: 0.0 },
Coordinate { x: 1.0, y: 8.0 },
);
let line_with_offset = line.offset(2.0)?;