- /
-
Crown
on 5 Oct 2021
- 63
- 156
- 1
- 0
- 271
fill([0 0 -1 1.67 2.505 3.34 6 5 5],[0 5 10 5 12 5 10 5 0],'y');
hold on;
R = 0.5 ; C = [0.67 1.67 ; 2.5 1.67 ; 4.33 1.67] ;
t=0:0.001:2*pi;
xc = R*cos(t) ; yc = R*sin(t) ; c = {'R','G','B'} ;
for i = 1:3
x=C(i,1)+0.5*cos(t);
y=C(i,2)+0.5*sin(t);
fill(x,y,c{i});
end
axis square tight off