how to make a polygon with direction of points?

4 views (last 30 days)
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 Comments
Jan
Jan on 23 May 2022
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 on 23 May 2022
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.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 23 May 2022
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.

More Answers (0)

Categories

Find more on Computational Geometry in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!