Hi all. Probably a stupid question but I cannot seem to understand how to increase the size of this actor in the code above. If I change anything in SetViewport, it somehow increases the size but also moves the actor, while SetTotalLength just seems to have no effect at all. What can I do to just increase the size of the actor (I want longer axes, text can stay as it is), but keeping it in bottom left corner without moving it further from borders?
It does not really matter which scale_factor I put there, the result is still the same.
It seems that at the point of calling SetVieport the vtkAxesActor is just resized automatically to fit within the provided viewport. But it is as if this viewport has some internal padding(?) which prevents the actor to be located where I’d want it to be.
I think this because if I changed the code to self.axes_widget.SetViewport(0.00, 0.00, 0.3, 0.3), the actor increases in size, again fitting to the viewport, but the padding gets bigger as well and it gets further from the borders of the widget.
Here is the screenshot of the left bottom corner of my app: I want the axes to really be in the corner but, instead, the bigger I make the axes, the bigger seems viewport’s padding to be.