在Sympy中,该函数
Triangle.is_right()
用于检查给定的三角形是否为直角三角形。直角三角形是其中一个角度为直角(90度)的三角形。用法: Triangle.is_right() 返回: True: if it is right-angled, otherwise False
范例1:
# import Triangle, Point
from sympy.geometry import Triangle, Point
# using Triangle()
t1 = Triangle(Point(0, 0), Point(4, 0), Point(4, 3))
# using is_right()
isRight = t1.is_right()
print(isRight)
输出:
True
范例2:
# import Triangle, Point
from sympy.geometry import Triangle, Point
# using Triangle()
t2 = Triangle(Point(0, 0), Point(2, 0), Point(4, 3))
# using is_right()
isRight = t2.is_right()
print(isRight)
输出:
False
相关用法
- Python sympy.sec()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python sympy.ff()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.ones()用法及代码示例
- Python sympy.rf()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.cos()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.sin()用法及代码示例
- Python sympy.div()用法及代码示例
- Python sympy.has()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.Add()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python – Sympy Triangle.is_right() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。