Skip to content
Snippets Groups Projects
Commit 94d9f0a1 authored by Peter Reischig's avatar Peter Reischig Committed by Nicola Vigano
Browse files

Changes for better display.

git-svn-id: https://svn.code.sf.net/p/dct/code/trunk@877 4c865b51-4357-4376-afb4-474e03ccb993
parent 012e42c4
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,13 @@ poles_phi=[0 90 60] ...@@ -162,7 +162,13 @@ poles_phi=[0 90 60]
poles_r=tand(poles_psi/2); poles_r=tand(poles_psi/2);
[poles_x,poles_y]=pol2cart((-pi/2)+poles_phi*pi/180, poles_r); [poles_x,poles_y]=pol2cart((-pi/2)+poles_phi*pi/180, poles_r);
plot(poles_x, poles_y, 'k*') plot(poles_x, poles_y, 'k*')
text(0, 0.04, '[0 0 0 1]', 'fontsize', 14, 'fontweight', 'bold')
text(0.85, 0.04, '[0 1 -1 0]', 'fontsize', 14, 'fontweight', 'bold')
text(0.9, -0.5, '[1 1 -2 0]', 'fontsize', 14, 'fontweight', 'bold')
text(poles_x(1), poles_y(1), '[0 0 0 1]', 'fontsize', 20, ...
'fontweight', 'bold','VerticalAlignment','top','HorizontalAlignment','left')
text(poles_x(2), poles_y(2), '[0 1 -1 0]', 'fontsize', 20, ...
'fontweight', 'bold','VerticalAlignment','top','HorizontalAlignment','right')
text(poles_x(3), poles_y(3), '[1 1 -2 0]', 'fontsize', 20, ...
'fontweight', 'bold','VerticalAlignment','bottom','HorizontalAlignment','right')
set(gca,'position',[0 0 1 1])
axis equal
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment