-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add visibility notebook, usd docs * heatmap * test plot * finnicky * plotting finally * remove dust2 gif * adding prerelease to readme, fixing ruff stuff * remove 3.9 * no more 3.9 * add USD download links * update usd and ticks * Revert
- Loading branch information
1 parent
03f4250
commit 6748bb6
Showing
20 changed files
with
859 additions
and
171 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
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
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
from awpy.demo import Demo | ||
|
||
__version__ = "2.0.0-alpha" | ||
__version__ = "2.0.0b3" | ||
__all__ = ["Demo"] |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,33 @@ | ||
"""Awpy plotting module.""" | ||
|
||
SIDE_COLORS = {"ct": "#5d79ae", "t": "#de9b35"} | ||
SUPPORTED_MAPS = ["de_dust2"] | ||
PLOT_SETTINGS = { | ||
"ct": { | ||
"marker": "o", | ||
"color": "tab:cyan", | ||
"size": 8, | ||
}, | ||
"t": { | ||
"marker": "o", | ||
"color": "tab:olive", | ||
"size": 8, | ||
}, | ||
"bomb": { | ||
"marker": "x", | ||
"color": "tab:orange", | ||
"size": 8, | ||
}, | ||
"smoke": { | ||
"marker": "o", | ||
"color": "tab:gray", | ||
"size": 12, | ||
}, | ||
"fire": { | ||
"marker": "o", | ||
"color": "tab:red", | ||
"size": 12, | ||
}, | ||
} | ||
|
||
from awpy.plot.plot import gif, heatmap, plot | ||
|
||
__all__ = ["gif", "heatmap", "plot"] |
Oops, something went wrong.