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


Python Sympy Plane.is_coplanar()用法及代码示例


在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



相关用法


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