目录
当前位置: 首页 > 文档资料 > Snap.svg 英文文档 >

Snap.path.intersection(path1, path2)

优质
小牛编辑
128浏览
2023-12-01

Utility method Finds intersections of two paths

Parameters

  1. path1stringpath string
  2. path2stringpath string

Returns: array dots of intersection

  1. [
  2. {
    1. x: numberx coordinate of the point,
    2. y: numbery coordinate of the point,
    3. t1: numbert value for segment of path1,
    4. t2: numbert value for segment of path2,
    5. segment1: numberorder number for segment of path1,
    6. segment2: numberorder number for segment of path2,
    7. bez1: arrayeight coordinates representing beziér curve for the segment of path1,
    8. bez2: arrayeight coordinates representing beziér curve for the segment of path2
  3. }
  4. ]

最后更新:

类似资料

  • 问题内容: 我一直在尝试使用Path2D类和鼠标侦听器为Java绘图程序创建钢笔工具,但结果令人困惑。该工具将工作几秒钟,但随后整个应用程序将冻结,必须关闭。(这里没有例外;程序只会冻结)。这是一个说明问题的SSCCE: 我编写了自己的类,在这里可以很好地工作,但是我想在Path2D类中使用一些其他功能。 我在这里做错什么了吗?还是Path2D无法执行我想做的事情? 任何帮助将不胜感激。 问题答案

  • 所以,我有一个程序可以在JPanel上绘制Path2D圆。我试图做的是当用户点击并拖动圆圈右下角时调整圆圈的大小。所以,我想要检测的是它们何时在圆的右下角外边缘,而不是圆周围边界的右下角。基本上,我需要弄清楚如何做这样的事情: 我知道如何使用getBounds()来处理矩形,但是当您在圆上使用getBounds()时,它将返回圆周围的正方形,而不是实际圆的边界。有什么办法可以让它工作吗?谢谢 这是

相关阅读