Skip to content

Commit

Permalink
Improving animations (#34)
Browse files Browse the repository at this point in the history
* Improvements for svg animations:
- common attributes of elements via defs
- removed borders
- grid lines by default
  • Loading branch information
Tviskaron committed Jun 2, 2024
1 parent 4a3d06e commit 5950b65
Show file tree
Hide file tree
Showing 9 changed files with 665 additions and 727 deletions.
5 changes: 4 additions & 1 deletion pogema/__init__.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
from gymnasium import register
from pogema.grid_config import GridConfig
from pogema.integrations.make_pogema import pogema_v0
from pogema.svg_animation.animation_wrapper import AnimationMonitor, AnimationConfig
from pogema.a_star_policy import AStarAgent, BatchAStarAgent

from pogema.grid_config import Easy8x8, Normal8x8, Hard8x8, ExtraHard8x8
from pogema.grid_config import Easy16x16, Normal16x16, Hard16x16, ExtraHard16x16
from pogema.grid_config import Easy32x32, Normal32x32, Hard32x32, ExtraHard32x32
from pogema.grid_config import Easy64x64, Normal64x64, Hard64x64, ExtraHard64x64

__version__ = '1.2.2'
__version__ = '1.2.3a2'

__all__ = [
'GridConfig',
'pogema_v0',
'AStarAgent', 'BatchAStarAgent',
"AnimationMonitor", "AnimationConfig",

'Easy8x8', 'Normal8x8', 'Hard8x8', 'ExtraHard8x8',
'Easy16x16', 'Normal16x16', 'Hard16x16', 'ExtraHard16x16',
'Easy32x32', 'Normal32x32', 'Hard32x32', 'ExtraHard32x32',
Expand Down
Loading

0 comments on commit 5950b65

Please sign in to comment.