- /
-
Witch-on-Broom (Halloween theme)
on 31 Oct 2021
- 3
- 43
- 0
- 1
- 276
%Example 1:
figure('Color',[.95 .95 .1])
hold
dep=9;
%1602 % polygon
xv = rand(dep,1); yv = rand(dep,1);
xv = [xv ; xv(1)]; yv = [yv ; yv(1)];
x = rand(1e4,1); y = rand(1e4,1);
[in,on] = inpolygon(x,y,xv,yv);
plot(xv,yv,x(in),y(in),'.w',x(~in),y(~in),'.r','LineW',13,'MarkerSi',7)
numel(x(~in))/numel(x(in))/2
% x(on),y(on),'-b','LineW',13,'MarkerSi',4)
axis off