Skip to content

Commit

Permalink
rm propr fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
lappalainenj committed Oct 15, 2024
1 parent 78656cc commit 1707bb0
Show file tree
Hide file tree
Showing 62 changed files with 4 additions and 2 deletions.
Binary file removed .fonts/Andale_Mono.ttf
Binary file not shown.
Binary file removed .fonts/Arial.ttf
Binary file not shown.
Binary file removed .fonts/Arial_Black.ttf
Binary file not shown.
Binary file removed .fonts/Arial_Bold.ttf
Binary file not shown.
Binary file removed .fonts/Arial_Bold_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Arial_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Comic_Sans_MS.ttf
Binary file not shown.
Binary file removed .fonts/Comic_Sans_MS_Bold.ttf
Binary file not shown.
Binary file removed .fonts/Courier_New.ttf
Binary file not shown.
Binary file removed .fonts/Courier_New_Bold.ttf
Binary file not shown.
Binary file removed .fonts/Courier_New_Bold_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Courier_New_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Georgia.ttf
Binary file not shown.
Binary file removed .fonts/Georgia_Bold.ttf
Binary file not shown.
Binary file removed .fonts/Georgia_Bold_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Georgia_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Impact.ttf
Binary file not shown.
Binary file removed .fonts/Times_New_Roman.ttf
Binary file not shown.
Binary file removed .fonts/Times_New_Roman_Bold.ttf
Binary file not shown.
Binary file removed .fonts/Times_New_Roman_Bold_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Times_New_Roman_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Trebuchet_MS.ttf
Binary file not shown.
Binary file removed .fonts/Trebuchet_MS_Bold.ttf
Binary file not shown.
Binary file removed .fonts/Trebuchet_MS_Bold_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Trebuchet_MS_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Verdana.ttf
Binary file not shown.
Binary file removed .fonts/Verdana_Bold.ttf
Binary file not shown.
Binary file removed .fonts/Verdana_Bold_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Verdana_Italic.ttf
Binary file not shown.
Binary file removed .fonts/Webdings.ttf
Binary file not shown.
Binary file removed .fonts/andalemo.ttf
Binary file not shown.
Binary file removed .fonts/arial.ttf
Binary file not shown.
Binary file removed .fonts/arialbd.ttf
Binary file not shown.
Binary file removed .fonts/arialbi.ttf
Binary file not shown.
Binary file removed .fonts/ariali.ttf
Binary file not shown.
Binary file removed .fonts/ariblk.ttf
Binary file not shown.
Binary file removed .fonts/comic.ttf
Binary file not shown.
Binary file removed .fonts/comicbd.ttf
Binary file not shown.
Binary file removed .fonts/cour.ttf
Binary file not shown.
Binary file removed .fonts/courbd.ttf
Binary file not shown.
Binary file removed .fonts/courbi.ttf
Binary file not shown.
Binary file removed .fonts/couri.ttf
Binary file not shown.
Binary file removed .fonts/georgia.ttf
Binary file not shown.
Binary file removed .fonts/georgiab.ttf
Binary file not shown.
Binary file removed .fonts/georgiai.ttf
Binary file not shown.
Binary file removed .fonts/georgiaz.ttf
Binary file not shown.
Binary file removed .fonts/impact.ttf
Binary file not shown.
Binary file removed .fonts/times.ttf
Binary file not shown.
Binary file removed .fonts/timesbd.ttf
Binary file not shown.
Binary file removed .fonts/timesbi.ttf
Binary file not shown.
Binary file removed .fonts/timesi.ttf
Binary file not shown.
Binary file removed .fonts/trebuc.ttf
Binary file not shown.
Binary file removed .fonts/trebucbd.ttf
Binary file not shown.
Binary file removed .fonts/trebucbi.ttf
Binary file not shown.
Binary file removed .fonts/trebucit.ttf
Binary file not shown.
Binary file removed .fonts/verdana.ttf
Binary file not shown.
Binary file removed .fonts/verdanab.ttf
Binary file not shown.
Binary file removed .fonts/verdanai.ttf
Binary file not shown.
Binary file removed .fonts/verdanaz.ttf
Binary file not shown.
Binary file removed .fonts/webdings.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,4 @@ debug
prepare_api_reference.py
profile_imports.py
import_profile*
.fonts/
5 changes: 3 additions & 2 deletions flyvision/analysis/visualization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@

from matplotlib.font_manager import fontManager

for font in (Path(__file__).parent.parent.parent / ".fonts").glob("*.ttf"):
fontManager.addfont(font)
if (fonts := Path(__file__).parent.parent.parent / ".fonts").exists():
for font in fonts.glob("*.ttf"):
fontManager.addfont(font)
matplotlib.rc("figure", dpi=300)
matplotlib.rc("font", **{"family": "sans-serif", "sans-serif": "Arial", "size": 6})

Expand Down

0 comments on commit 1707bb0

Please sign in to comment.