-
|
Hi there, I've been using What options exist for drawing an arbitrary set of lines to mark the crystal axes? I am imagining a bounding box, but with arbitrary size and orientation. Something like this visualizer or an image like the one below (from CCoil on Wikimedia). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi Brandon, you can create a set of line with |
Beta Was this translation helpful? Give feedback.

Hi Brandon, you can create a set of line with
Lines(...)and reorient them by rotating them the way you like, as with any other vedo object (eg. lines.rotate_z().rotate_x()...)You can also start with a
Box().wireframe()and apply some linear transformation (in case your crystals have some known symmetry).