plot of 3d arc
Afficher commentaires plus anciens
I have three points describing an arc of a circle in three-dimensions.
- center point p0=(x0,y0,z0)
- starting point p1=(x1,y1,z1)
- end point p2=(x2,y2,z2)
I want plot the arc for
- case where I know (x0,y0,z0, x1,y1,z1, x2,y2,z2)
- case where I know (x0,y0,z0, x1,y1,z1, z2) unknown is (x2 y2)
Réponses (1)
Doug Hull
le 27 Mar 2012
Once you know representative points on the arc, you can use
plot3(x,y,z)
The tricky bit is generating the vectors x,y,z.
Knowing only the z value for an end point leaves the problem undefined. Actually, even where you know the endpoints entirely, there are two arcs.
1 commentaire
satish sahu
le 28 Mar 2012
Catégories
En savoir plus sur Computer Vision Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!