Thanks to visit codestin.com
Credit goes to github.com

Skip to content

py3fy art3d. #11106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions lib/mpl_toolkits/mplot3d/art3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
Module containing 3D artist code and functions to convert 2D
artists into 3D versions which can be added to an Axes3D.
"""
from __future__ import (absolute_import, division, print_function,
unicode_literals)

import six
from six.moves import zip

import math

Expand Down Expand Up @@ -225,12 +220,6 @@ class Line3DCollection(LineCollection):
A collection of 3D lines.
"""

def __init__(self, segments, *args, **kwargs):
"""
Keyword arguments are passed onto :func:`~matplotlib.collections.LineCollection`.
"""
LineCollection.__init__(self, segments, *args, **kwargs)

def set_sort_zpos(self, val):
"""Set the position to use for z-sorting."""
self._sort_zpos = val
Expand Down
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pep8ignore =
mpl_toolkits/axisartist/floating_axes.py E201 E225 E231 E261 E262 E271 E302 E303 E402 E501
mpl_toolkits/axisartist/grid_finder.py E231 E261 E302 E303 E402
mpl_toolkits/axisartist/grid_helper_curvelinear.py E221 E225 E231 E251 E261 E262 E271 E302 E303 E501
mpl_toolkits/mplot3d/art3d.py E203 E222 E225 E231 E501
mpl_toolkits/mplot3d/art3d.py E203 E222 E225 E231
mpl_toolkits/mplot3d/axes3d.py E203 E225 E231 E271 E303 E402 E501 E502 E701
mpl_toolkits/mplot3d/axis3d.py E201 E202 E203 E222 E231 E302 E303 E502
mpl_toolkits/mplot3d/proj3d.py E231 E302 E303
Expand Down