File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66Module containing 3D artist code and functions to convert 2D
77artists into 3D versions which can be added to an Axes3D.
88"""
9- from __future__ import (absolute_import , division , print_function ,
10- unicode_literals )
11-
12- import six
13- from six .moves import zip
149
1510import math
1611
@@ -225,12 +220,6 @@ class Line3DCollection(LineCollection):
225220 A collection of 3D lines.
226221 """
227222
228- def __init__ (self , segments , * args , ** kwargs ):
229- """
230- Keyword arguments are passed onto :func:`~matplotlib.collections.LineCollection`.
231- """
232- LineCollection .__init__ (self , segments , * args , ** kwargs )
233-
234223 def set_sort_zpos (self , val ):
235224 """Set the position to use for z-sorting."""
236225 self ._sort_zpos = val
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ pep8ignore =
8787 mpl_toolkits/axisartist/floating_axes.py E201 E225 E231 E261 E262 E271 E302 E303 E402 E501
8888 mpl_toolkits/axisartist/grid_finder.py E231 E261 E302 E303 E402
8989 mpl_toolkits/axisartist/grid_helper_curvelinear.py E221 E225 E231 E251 E261 E262 E271 E302 E303 E501
90- mpl_toolkits/mplot3d/art3d.py E203 E222 E225 E231 E501
90+ mpl_toolkits/mplot3d/art3d.py E203 E222 E225 E231
9191 mpl_toolkits/mplot3d/axes3d.py E203 E225 E231 E271 E303 E402 E501 E502 E701
9292 mpl_toolkits/mplot3d/axis3d.py E201 E202 E203 E222 E231 E302 E303 E502
9393 mpl_toolkits/mplot3d/proj3d.py E231 E302 E303
You can’t perform that action at this time.
0 commit comments