在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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。