search

Home  >  Q&A  >  body text

android - 如何判断两条线段是否相交

RT,两条曲线都是由触发的点连接的贝塞尔曲线。求,如何判断两个贝塞尔曲线是否是相交的,求指教。


提了好久都没有人来答,那现在问题改简单一下,看看有什么好答案。那么要如何判断两条直线段是否相交呢?

怪我咯怪我咯2771 days ago581

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑2017-04-18 09:18:09

    Using the available classes from the 2D Graphics API.

    Rectangle r1 = new Rectangle(100, 100, 100, 100); Line2D l1 = new
    Line2D.Float(0, 200, 200, 0); 
    System.out.println("l1.intsects(r1) = " + l1.intersects(r1));
    
    

    传送门:
    1. How to check intersection between a line and a rectangle?
    2. How do you detect where two line segments intersect?

    reply
    0
  • Cancelreply