clippy warnings
This commit is contained in:
parent
eb9dca70a6
commit
cd8793e55c
3 changed files with 12 additions and 11 deletions
|
@ -2,7 +2,7 @@
|
||||||
extern crate serde_json;
|
extern crate serde_json;
|
||||||
|
|
||||||
mod generate;
|
mod generate;
|
||||||
#[allow(unused_imports, dead_code)]
|
#[allow(unused_imports, dead_code, clippy::all)]
|
||||||
pub mod prisma;
|
pub mod prisma;
|
||||||
mod routes;
|
mod routes;
|
||||||
pub mod state;
|
pub mod state;
|
||||||
|
|
|
@ -20,7 +20,7 @@ pub struct GameCoreState {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct GameDerivedState<'a> {
|
pub struct GameDerivedState<'a> {
|
||||||
core: &'a GameCoreState,
|
pub core: &'a GameCoreState,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl GameCoreState {
|
impl GameCoreState {
|
||||||
|
|
|
@ -5,7 +5,7 @@ extern crate triangle_sys as sys;
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
||||||
use std::{ffi::CString, mem::MaybeUninit, ptr};
|
use std::{ffi::CString, mem::MaybeUninit};
|
||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
|
|
||||||
|
@ -49,17 +49,18 @@ pub fn triangulate<P>(opts: TrianglulateOpts<P>) -> Result<TriangulateResult>
|
||||||
where
|
where
|
||||||
P: IntoIterator<Item = Point>,
|
P: IntoIterator<Item = Point>,
|
||||||
{
|
{
|
||||||
let mut switches = Vec::new();
|
let mut switches = vec![
|
||||||
switches.push("p".to_owned());
|
"p".to_owned(),
|
||||||
switches.push("c".to_owned());
|
"c".to_owned(),
|
||||||
switches.push("z".to_owned());
|
"z".to_owned(),
|
||||||
switches.push("A".to_owned());
|
"A".to_owned(),
|
||||||
|
"q".to_owned(),
|
||||||
|
"e".to_owned(),
|
||||||
|
"n".to_owned(),
|
||||||
|
];
|
||||||
if let Some(maximum_triangle_area) = opts.maximum_triangle_area {
|
if let Some(maximum_triangle_area) = opts.maximum_triangle_area {
|
||||||
switches.push(format!("a{maximum_triangle_area}"));
|
switches.push(format!("a{maximum_triangle_area}"));
|
||||||
}
|
}
|
||||||
switches.push("q".to_owned());
|
|
||||||
switches.push("e".to_owned());
|
|
||||||
switches.push("n".to_owned());
|
|
||||||
if opts.voronoi {
|
if opts.voronoi {
|
||||||
switches.push("v".to_owned());
|
switches.push("v".to_owned());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue