e2D 1.4.16__py3-none-any.whl → 1.4.17__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- e2D/__init__.py +4 -0
- e2D/__init__.pyi +4 -0
- e2D/colors.py +3 -0
- e2D/def_colors.py +1732 -0
- e2D/envs.py +9 -9
- {e2D-1.4.16.dist-info → e2D-1.4.17.dist-info}/METADATA +1 -1
- e2D-1.4.17.dist-info/RECORD +13 -0
- e2D-1.4.16.dist-info/RECORD +0 -12
- {e2D-1.4.16.dist-info → e2D-1.4.17.dist-info}/LICENSE +0 -0
- {e2D-1.4.16.dist-info → e2D-1.4.17.dist-info}/WHEEL +0 -0
- {e2D-1.4.16.dist-info → e2D-1.4.17.dist-info}/top_level.txt +0 -0
e2D/__init__.py
CHANGED
e2D/__init__.pyi
CHANGED
e2D/colors.py
CHANGED
|
@@ -451,6 +451,9 @@ class Color:
|
|
|
451
451
|
def green(cls) -> "Color": return Color(0,255,0)
|
|
452
452
|
@classmethod
|
|
453
453
|
def blue(cls) -> "Color": return Color(0,0,255)
|
|
454
|
+
|
|
455
|
+
# @classmethod
|
|
456
|
+
# def (cls) -> "Color": return Color(0,0,255)
|
|
454
457
|
|
|
455
458
|
@classmethod
|
|
456
459
|
def randomize(cls) -> "Color":
|