-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
[Axis label addition] Hello, Jintao Li #6
Comments
If your code is written in .py file, cigvis doesn't support axis (NOW). We may implement this feature in a future release. If your code is written in .ipynb file (i.e., in jupyter), the feature to show axes is turned on by default. But the abilities of cigvis are limited in jupyter (slow and cannot drag slices). |
Thank you for your reply. I am looking forward using a next release!! |
Hi! Just use: # load data
data = np.fromfile(xxxx).reshape(xxxx)
# some nodes
nodes = xxxxx
nodes += xxxxx
# add axis, you must provide a shape.
nodes += cigvis.create_axis(data.shape)
cigvis.plot3D(nodes) |
Cool! Thank you so much!! I will try it soon!!! |
Hello,
The cigvis is very useful for me to visualize the 3D data. Thank you for sharing your neat program.
My question is
Could we add axis labels and ticks in the cigvis?
such as "X [m]" or "Z [sec]"
Sincerely,
Changwan Sun
The text was updated successfully, but these errors were encountered: