Rüdiger
unread,May 22, 2020, 4:40:09 AM5/22/20Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mtex...@googlegroups.com
Hi,
something like annotation('arrow',...) is not implemented at the
moment.You can try and see if a combination of vector3d/line and
vector3d/quiver works for you.
cs = crystalSymmetry('432')
h = Miller.rand(2,cs)
h=h.project2FundamentalRegion;
plot(h,'FundamentalRegion','label',{'1' '2'});
hold on
h=vector3d(h)
quiver(h(2),-h(1),'MaxHeadSize',1000)
hold on
line(h(2),h(1),'.','add2all')
hold off
Cheers,
Rüdiger