• Remix
  • Share
  • New Entry

  • KSSV

  • /
  • Make a Wish...!

on 6 Oct 2021
  • 66
  • 140
  • 0
  • 0
  • 255
figure('color','k');
hold on
% Moon
th = linspace(0,2*pi) ;
R = 0.1 ; C = [0.8 0.8] ;
patch(C(1)+R*cos(th),C(2)+R*sin(th),'w')
% Stars
plot(rand(50,1),rand(50,1),'*w')
% Falling star
P = [0.2 0.9 ; 0.5 0.5] ;
plot(P(1,1),P(1,2),'*w',P(:,1),P(:,2),'w','LineWidth',2.1)
axis equal off
axis([0 1 0 1])
Remix Tree