Fill area between circles
Mostrar comentarios más antiguos
Lets say I have 2 circles. They are concentric about the origin. What is the best way to fill the area between the 2? I am using this circle function that I found on Mathworks. The larger circle has a diameter of 10 and the smaller circle has a diameter of 5.
function circle(d,x,y,ang_start,ang_end,step)
ang=ang_start:step:ang_end;
xp=(d/2)*cos(ang);
yp=(d/2)*sin(ang);
plot(x+xp,y+yp);
end
Thanks,
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Polygons en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
