Skip to content

Commit

Permalink
Min/max distance measured in f64, not f32 (#5)
Browse files Browse the repository at this point in the history
Co-authored-by: gserena01 <[email protected]>
  • Loading branch information
gserena01 and gserena01 authored Dec 8, 2023
1 parent 9f03a18 commit 611473f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modeling-cmds/src/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@ pub struct GetSketchModePlane {
#[derive(Debug, Serialize, Deserialize, JsonSchema)]
pub struct EntitiesGetDistance {
/// The minimum distance between the input entities.
pub min_distance: f32,
pub min_distance: f64,
/// The maximum distance between the input entities.
pub max_distance: f32,
pub max_distance: f64,
}

impl<'de> ModelingCmdOutput<'de> for Export {}
Expand Down

0 comments on commit 611473f

Please sign in to comment.