how to make a polygon with direction of points?
1 次查看(过去 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
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?
采纳的回答
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Object Containers 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!