Skip to content

Commit

Permalink
load mathics.builtin.box
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatera committed Nov 10, 2021
1 parent bf7806e commit 4cf476a
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions mathics/builtin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ def is_builtin(var):
for subdir in (
"arithfns",
"assignments",
"box",
"colors",
"distance",
"drawing",
Expand Down
1 change: 1 addition & 0 deletions mathics/builtin/box/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
Boxing information like width and size makes it easier for formatters to do
layout without having to know the intricacies of what is inside the box.
"""
from mathics.version import __version__ # noqa used in loading to check consistency.
1 change: 1 addition & 0 deletions mathics/builtin/box/compilation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
from mathics.version import __version__ # noqa used in loading to check consistency.

from mathics.builtin.base import BoxConstruct

Expand Down
3 changes: 3 additions & 0 deletions mathics/builtin/box/graphics.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Boxing Routines for 2D Graphics
"""

from mathics.version import __version__ # noqa used in loading to check consistency.


import base64
from math import atan2, ceil, cos, degrees, floor, log10, pi, sin

Expand Down
2 changes: 2 additions & 0 deletions mathics/builtin/box/graphics3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"""
Boxing Routines for 3D Graphics
"""
from mathics.version import __version__ # noqa used in loading to check consistency.


import html
import json
Expand Down
1 change: 1 addition & 0 deletions mathics/builtin/box/image.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
from mathics.version import __version__ # noqa used in loading to check consistency.

from mathics.builtin.base import BoxConstruct

Expand Down
1 change: 1 addition & 0 deletions mathics/builtin/box/inout.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
from mathics.version import __version__ # noqa used in loading to check consistency.

from mathics.builtin.base import Builtin

Expand Down
2 changes: 2 additions & 0 deletions mathics/builtin/box/uniform_polyhedra.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
import numbers
from mathics.core.symbols import Symbol

from mathics.version import __version__ # noqa used in loading to check consistency.


class UniformPolyhedron3DBox(InstanceableBuiltin):
def init(self, graphics, style, item):
Expand Down

0 comments on commit 4cf476a

Please sign in to comment.