1

I have java general path with random points. I want to crop one side of it and get straight line. crop general path

How to make it?

4

1 回答 1

5
  1. 创建一个Area基于第一个GeneralPath基于此构造函数。我会打电话mainArea的。
  2. Rectangle2D基于该线创建一个,同时覆盖其左侧的区域。我会打电话lineArea的。
  3. 调用Area.subtract(Area)使用mainArea.subtract(lineArea);

在这个答案中可以看到一个例子。

于 2013-07-21T09:02:22.760 回答