how i can fill a circle with different styles like striped,...?
3 ビュー (過去 30 日間)
古いコメントを表示
i have circle with specified raduis and center:
r1=10;
x1=20; y1=30;
i draw it like this:
nd = 50;
angle = 0:2*pi/nd:2*pi;
x0 = x1 + r1 *cos(angle); y0 = y1 + r1 *sin(angle);
figure
plot(x0,y0,'k')
axis equal
i want to fill this circle in striped mode or other styles.
Does anyone know how I can do these things?
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!