Skip to content

Commit 9ecf464

Browse files
authored
Merge pull request #1376 from mathics/formatter-refactor
Start to split off formatting routines..
2 parents 5682345 + faf0528 commit 9ecf464

File tree

9 files changed

+530
-255
lines changed

9 files changed

+530
-255
lines changed

mathics/builtin/drawing/graphics3d.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
Graphics (3D)
4+
Three-Dimensional Graphics
55
"""
66

77

@@ -778,9 +778,6 @@ def __init__(self, content, evaluation, neg_y=False):
778778
def extent(self, completely_visible_only=False):
779779
return total_extent_3d([element.extent() for element in self.elements])
780780

781-
def to_svg(self):
782-
return "\n".join(element.to_svg() for element in self.elements)
783-
784781
def to_asy(self):
785782
return "\n".join([element.to_asy() for element in self.elements])
786783

0 commit comments

Comments
 (0)