计算笛卡尔平面中物体的面积
我想知道当我们知道每个点的坐标时,是否有人可以帮助我找到笛卡尔平面中二维物体的面积。 例如:我想计算三角形的面积。 A(12,34) B(45,89) C(25,35)
我想要一个通用算法来查找任何二维对象的面积。
谢谢。
I wonder if someone can help me to find the area of a 2-D object in Cartesian plane , when we know coordinates of every points.
Eg : I want to calculate the area of a triangular. A(12,34) B(45,89) C(25,35)
I want a common algorithm to find any 2-D object's area.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的对象是一个简单的多边形,则无需对其进行三角测量来计算其面积。有一个简单的公式,仅取决于顶点的坐标。请参阅http://en.wikipedia.org/wiki/Polygon#Area_and_centroid
If your object is a simple polygon, there's no need to triangulate it to compute its area. There's a simple formula that depends only on the coordinates of the vertices. See http://en.wikipedia.org/wiki/Polygon#Area_and_centroid
这里,使用三角测量。当我搜索“给定点集的多边形区域”时,这实际上是谷歌的最高结果。请在发帖前做好研究。
Here you go, uses triangulation. This was literally the top result off Google when I searched "area of polygon given set of points". Please do your research before posting.