how to make a polygon with direction of points?

2 次查看(过去 30 天)
i want to make a polygon with direction of points like second polygon.
but what i can only make is first polygo which is i didn't intend to make.
the polygon should be made from mean point.
let me know how to draw a polygon with specific direction.
thanks!
  4 个评论
Jan
Jan 2022-5-23
My answer could be more specific, if you explain more specifically, what your input data are and what you want to get as output. Please post some code, which creates representative inputs. If I invent your data, the chance is to high, that my guess do not match and the time for typing my answer is wasted.
It is not even clear, what exactly you call a "polygon" here. What does this sentence mean: "the polygon should be made from mean point." Which is the "mena point" in the provided example?
Points do not have directions. What is the wanted output? The coordinates of the corners of the squares? Or do you want to draw it in a figure or in an image?
Sierra
Sierra 2022-5-23
my input data are cooridnates, and the mean point is mean of a lot of coordinates.
i made a square using percentile.
what i want to know is how to rotate the square using angle between two points.
sorry for make you confused.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2022-5-23
You can create a transformation matrix. I recommend using makehgtform() . Transforms for it are applied right (last) to left (first). Typically you would subtract off the center of rotation, rotate, then add back the center of rotation... except in reverse order, so something like
M = makehgtform('translate', cx, cy, cz, 'xrotate', angle, 'translate', -cx, -cy, -cz)
You would then create coordinate lists for your points, [x(:), y(:), z(:), zeros(numel(x),1] and post-multiply by M to get transformed points.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Computational Geometry 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by