Python sympy is_collinear()方法
函数is_collinear()使我们能够检查给定的点(坐标)是否相邻。
或不。
语法:
参数: x, y, z 为坐标。
返回: 真:如果点是相邻的,否则为假。
示例 #1:
# import sympy and geometry module
from sympy import *
from sympy.geometry import *
x = Point(0, 0)
y = Point(1, 1)
z = Point(2, 2)
# Using Point.is_collinear() method
isTrue = Point.is_collinear(x, y, z)
print(isTrue)
输出:
True
示例 #2:
# import sympy and geometry module
from sympy import *
from sympy.geometry import *
x = Point(1, 0)
y = Point(1, 2)
z = Point(2, 2)
# Using Point.is_collinear() method
isTrue = Point.is_collinear(x, y, z)
print(isTrue)
输出:
False