how can draw shape along moving trajectory ?

 Réponse acceptée

KSSV
KSSV le 6 Fév 2017
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 commentaire

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

Connectez-vous pour commenter.

Plus de réponses (1)

Selva Karna
Selva Karna le 6 Fév 2017

0 votes

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

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by