获取两个几何图形的交集大小

本文关键字:几何图形 两个 获取 | 更新日期: 2023-09-27 17:58:39

我有一些时髦的xml文件,其中包含封闭的复杂二维几何形状(这些表示拥有的属性)。我想将这些xml几何图形读取到PathGeometry/PathFigures中。

如何获得其中两个PathGeometry之间的切割曲面
有没有一种方法可以获得切割表面的尺寸(例如,相对于其中一个几何形状的完整尺寸)。

或者我应该使用其他东西而不是PathGeometry来获得横截面吗?

获取两个几何图形的交集大小

比我想象的更简单:

PathGeometry firstGeometry;
PathGeometry secondGeometry;
PathGeometry intersectionGeometry = PathGeometry.Combine(firstGeometry, secondGeometry, GeometryCombineMode.Intersect, null);