在Simpy中,该函数
Plane.is_coplanar()
用于检查给定平面是否共面。用法: Plane.is_coplanar(p) 参数: p: a Plane 返回: True: if planes are coplanar, else False
范例1:
# import sympy, Point3D and Plane
from sympy import Point3D, Plane
o = (0, 0, 0)
# using Plane()
p1 = Plane(o, (1, 1, 1))
p2 = Plane(o, (2, 2, 2))
# using is_coplanar()
isCoplanar = p1.is_coplanar(p2)
print(isCoplanar)
输出:
True
范例2:
# import sympy, Point3D and Plane
from sympy import Point3D, Plane
o = (0, 0, 0)
# using Plane()
p3 = Plane(o, (1, 1, 1))
p4 = Plane(o, (3, 2, 1))
# using is_coplanar()
isCoplanar = p3.is_coplanar(p4)
print(isCoplanar)
输出:
False
相关用法
- Python sympy.S()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.csc()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.ff()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.div()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.sec()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.Mul()用法及代码示例
- Python sympy.cos()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | Sympy Plane.is_coplanar() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。