-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NEW] implemented a contsructor for Mapline that gets two arrays with…
… 2 elements of f32 [NEW] removed the dimension value in MapPoint struct, because it will use a three coordinate system with a conversion to Pos2 based upon a projection algorithm [FIX] id and name properties in mappoint now are private [ENHANCEMENT] using 0.27 version of egui
- Loading branch information
Showing
3 changed files
with
27 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui-map" | ||
version = "0.0.12" | ||
version = "0.0.13" | ||
edition = "2021" | ||
authors = ["Rafael Amador <[email protected]"] | ||
description = "Visual component to draw a map on screen." | ||
|
@@ -40,7 +40,7 @@ default = [] | |
puffin = ["dep:puffin"] | ||
|
||
[dependencies] | ||
egui = { version = "0.26.2", features = ["bytemuck", "log"]} | ||
egui = { version = "0.27.0", features = ["bytemuck", "log"]} | ||
kdtree = { version = "0.7.0" } | ||
puffin = { version = "0.19.0", optional=true, default-features = false} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters