File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed
doc/api/next_api_changes/removals Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 1
- Removal of `` renderer `` arguments in mplot3d
2
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1
+ Removal of deprecated arguments in mplot3d
2
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
3
The deprecated ``renderer `` arguments have been removed from:
4
4
5
5
- `.Line3DCollection.do_3d_projection `
@@ -8,3 +8,6 @@ The deprecated ``renderer`` arguments have been removed from:
8
8
- `.Path3DCollection.do_3d_projection `
9
9
- `.Patch3DCollection.do_3d_projection `
10
10
- `.Poly3DCollection.do_3d_projection `
11
+
12
+ The deprecated ``project `` argument has also been removed from
13
+ ``Line3DCollection.draw() ``.
Original file line number Diff line number Diff line change @@ -312,14 +312,6 @@ def do_3d_projection(self):
312
312
minz = min (minz , min (zs ))
313
313
return minz
314
314
315
- @artist .allow_rasterization
316
- @_api .delete_parameter ('3.4' , 'project' ,
317
- alternative = 'Line3DCollection.do_3d_projection' )
318
- def draw (self , renderer , project = False ):
319
- if project :
320
- self .do_3d_projection ()
321
- super ().draw (renderer )
322
-
323
315
324
316
def line_collection_2d_to_3d (col , zs = 0 , zdir = 'z' ):
325
317
"""Convert a LineCollection to a Line3DCollection object."""
You can’t perform that action at this time.
0 commit comments