8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1020055 commit 364fd1cCopy full SHA for 364fd1c
lib/mpl_toolkits/mplot3d/axes3d.py
@@ -2607,14 +2607,14 @@ def calc_arrow(uvw, angle=15):
2607
self.add_collection(linec)
2608
return linec
2609
2610
- shaft_dt = np.array([0, length])
+ shaft_dt = np.array([0., length])
2611
arrow_dt = shaft_dt * arrow_length_ratio
2612
2613
cbook._check_in_list(['tail', 'middle', 'tip'], pivot=pivot)
2614
if pivot == 'tail':
2615
shaft_dt -= length
2616
elif pivot == 'middle':
2617
- shaft_dt -= length/2.
+ shaft_dt -= length / 2
2618
2619
XYZ = np.column_stack(input_args[:3])
2620
UVW = np.column_stack(input_args[3:argi]).astype(float)
0 commit comments