在Sympy中,函數Polygon.is_convex()用於檢查給定的多邊形是否凸出。如果多邊形的所有內角均小於180度且側麵之間沒有相交,則稱該多邊形為凸麵。
用法:Polygon.is_convex() 返回: True:True if this polygon is convex, False otherwise.
範例1:
Python3
# import Point, Polygon
from sympy import Point, Polygon
# creating points using Point()
p1, p2, p3, p4 = map(Point, [(0, 0), (1, 0), (5, 1), (0, 1)])
# creating polygon using Polygon()
isConvex = Polygon(p1, p2, p3, p4)
# using is_convex()
print(isConvex.is_convex())
輸出:
True
範例2:
Python3
# import Point, Polygon
from sympy import Point, Polygon
# creating points using Point()
p1, p2, p3, p4, p5 = map(Point, [(0, 0), (3, 2), (4, 5), (7, 1), (6, 3)])
# creating polygon using Polygon()
isConvex = Polygon(p1, p2, p3, p4, p5)
# using is_convex()
print(isConvex.is_convex())
輸出:
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 Polygon.is_convex() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。