当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Sympy Line.are_concurrent用法及代码示例


在Sympy中,函数are_concurrent()用于检查给定的线性
实体(线)是否并发。如果两个或多个线性实体同时存在
它们都在一个点相交。
用法: Line.are_concurrent(lines)

参数:
 lines: a sequence of linear entities.

返回:
 True:  if the set of linear entities intersect in one point
 False: otherwise.

范例1:

# import sympy and Point, Line 
from sympy import Point, Line 
  
p1, p2 = Point(0, 0), Point(3, 5) 
p3, p4 = Point(-2, -2), Point(0, 2) 
  
l1, l2, l3 = Line(p1, p2), Line(p1, p3), Line(p1, p4) 
  
# using are_concurrent() method 
areConcurrent = Line.are_concurrent(l1, l2, l3) 
  
print(areConcurrent)

输出:


True

范例2:

# import sympy and Point, Line 
from sympy import Point, Line 
  
p1, p2 = Point(0, 0), Point(3, 5) 
p3, p4 = Point(-2, -2), Point(0, 2) 
  
l1, l2, l3 = Line(p1, p3), Line(p1, p4), Line(p2, p3) 
  
# using are_concurrent() method 
areConcurrent = Line.are_concurrent(l1, l2, l3) 
  
print(areConcurrent)

输出:

False


相关用法


注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | Sympy Line.are_concurrent method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。