Coverage for pyrc \ core \ visualization \ __init__.py: 100%
6 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-13 16:59 +0200
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-13 16:59 +0200
1# -------------------------------------------------------------------------------
2# Copyright (C) 2026 Joel Kimmich, Tim Jourdan
3# ------------------------------------------------------------------------------
4# License
5# This file is part of PyRC, distributed under GPL-3.0-or-later.
6# ------------------------------------------------------------------------------
7from pyrc.core.visualization.color import *
8from pyrc.core.visualization.color import __all__ as _color_all
9from pyrc.core.visualization.viewer import Viewer
10from pyrc.core.visualization.vpython import color_cells_by_attribute
12__all__ = ["Viewer", "color_cells_by_attribute"]
14__all__.extend(_color_all)