• Remix
  • Share
  • New Entry

on 15 Oct 2021
  • 1
  • 11
  • 0
  • 0
  • 221
x=3;y=3;
r=1;
%set(gca,'Color','g');
hold on;
a=[3,3];b=[3,4];
th=0:pi/50:2*pi;
x_cir=r*cos(th)+x;
y_cir=r*sin(th)+y;
cir =plot(x_cir, y_cir,'k');
hold on;
plot(a,b,'k');
hold on;
m=[2.2,3];n=[2.4,3];i=[3,3.8];j=[3,2.4];
plot(m,n,'k');hold on;
plot(i,j,'k');
title('BENZ');
Remix Tree