Skip to content

Commit

Permalink
chore: rename get_sum_coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
omelette-watin committed Aug 22, 2023
1 parent 84bc0b1 commit 8fa134a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ pub use self::colors::{ParsedColorLimits, ParsedIntensityLimits};
pub use self::convert_file::convert_file;
pub use self::convert_point::convert_point;
pub use self::convert_pointcloud::convert_pointcloud;
pub use self::stations::{create_station_point, get_sum_coordinate, StationPoint};
pub use self::stations::{create_station_point, get_sum_coordinates, StationPoint};
2 changes: 1 addition & 1 deletion src/stations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn create_station_point(sum_coordinate: (f64, f64, f64), count: f64) -> Stat
}
}

pub fn get_sum_coordinate(
pub fn get_sum_coordinates(
mut sum_coordinate: (f64, f64, f64),
point: &e57::Point,
) -> (f64, f64, f64) {
Expand Down

0 comments on commit 8fa134a

Please sign in to comment.