polybuffer command how to get the polygons without colours ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
jahanzaib ahmad
am 27 Nov. 2018
Kommentiert: jahanzaib ahmad
am 28 Nov. 2018
i m using polybuffer command polyout3 = polybuffer(polyin,0.006667,'JointType','square');
plot(polyout2);
i want to remove the colours of polygons and just want the boundaries or offset polygons .
0 Kommentare
Akzeptierte Antwort
Steven Lord
am 27 Nov. 2018
When you call plot on the polyshape object returned by polybuffer specify that you want 'FaceColor' to be 'none'. Compare the plots in the two figures created by this code:
>> P = nsidedpoly(4);
>> figure
>> plot(P)
>> title('Default FaceColor')
>> figure
>> plot(P, 'FaceColor', 'none')
>> title('FaceColor none')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Elementary Polygons finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
