how can draw shape along moving trajectory ?

 Akzeptierte Antwort

KSSV
KSSV am 6 Feb. 2017

0 Stimmen

I don't know what shape you want...I am taking a random shape here, it looks weird. But this is the procedure you have to follow:
clc; clear all ;
k = rand(10,2)/10 ;
k = [k ; k(1,:)] ; % a random shape
% random trajectory
N = 10 ;
x = rand(N,1) ;
y = rand(N,1) ;
for i = 1:N
plot(x,y,'.-b') ;
hold on
patch(x(i)+k(:,1),y(i)+k(:,2),'r')
hold off
pause(0.1)
end

1 Kommentar

Thank you for reply....
i want plot triangle from contour points, its possible to plot ??
i have attached plz refer me

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Selva Karna
Selva Karna am 6 Feb. 2017

0 Stimmen

i want plot triangle shape from different fingers along moving using contours points , its possible ? KSSV?

Kategorien

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by