forked from mirror/codesnap.nvim
6 lines
84 B
Rust
6 lines
84 B
Rust
|
pub trait Edge {
|
||
|
fn horizontal(&self) -> f32;
|
||
|
|
||
|
fn vertical(&self) -> f32;
|
||
|
}
|