In plotting a 3d vector fields using VectorPlot3D[] with one domain length longer than the others, the vector shapes (both head and tube) flatten to account for the longer length domain. This can make the plot look pretty ugly.
VectorPlot3D[{x, y, z}, {x, -1, 5}, {y, -1, 1}, {z, -1, 1}, VectorPoints -> 3, VectorAspectRatio -> .2] It makes sense why they are being flattened since the domain length in the x-dimensions is 6 whereas the others are 2. I would like them not to appear flattened. Is there a way to normalize all the vector shapes so this doesn't happen?
Note - Interesting that neither the head nor stem flatten in 2-dimensional vector fields when using VectorPlot[]

