We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
x_range, y_range and z_range do not work generally for the representation of skewed grids in 3D.
x_range
y_range
z_range
If one of the lattice vectors of the cell is parallel to a cartesian axis, then for that particular axis it works. E.g.:
cell = [ [ 0, 2, 0] [ 0.5, 0, 1] [ 2, 0, -1] ]
Then y_range works because [0,2,0] is a lattice vector of the cell.
[0,2,0]
For now, the advise is to just adjust the axes ranges in the plot display (e.g. with plotly update_layout(yaxis_range=[0, 3]).
update_layout(yaxis_range=[0, 3])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
x_range
,y_range
andz_range
do not work generally for the representation of skewed grids in 3D.If one of the lattice vectors of the cell is parallel to a cartesian axis, then for that particular axis it works. E.g.:
Then
y_range
works because[0,2,0]
is a lattice vector of the cell.For now, the advise is to just adjust the axes ranges in the plot display (e.g. with plotly
update_layout(yaxis_range=[0, 3])
.The text was updated successfully, but these errors were encountered: