在Sympy中,函数Polygon.cut_section()用于获取分别位于相交线上方和下方的两个多边形段(多边形的two-part)的元组。它仅返回由线相交的多边形的两个部分。当线上方或线下方不存在多边形时,返回None。
用法:Polygon.cut_section(line) 返回: upper_polygon, lower_polygon:Polygon objects or None upper_polygon:is the polygon that lies above the given line lower_polygon: is the polygon that lies below the given line None: when no polygon exists above the line or below the line Raises: ValueError: When the line does not intersect the polygon
范例1:
Python3
# import sympy import Point, Polygon, Line
from sympy import Point, Polygon, Line
# creating points using Point()
p1, p2, p3, p4 = map(Point, [(0, 2), (0, 0), (1, 0), (1, 2)])
# creating polygon using Polygon()
poly = Polygon(p1, p2, p3, p4)
# using cut_section()
cutSection = poly.cut_section(Line((0, 1), slope = 0))
print(cutSection)
输出:
(Polygon(Point2D(0, 2), Point2D(0, 1), Point2D(1, 1), Point2D(1, 2)), Polygon(Point2D(0, 1), Point2D(0, 0), Point2D(1, 0), Point2D(1, 1)))
范例2:
Python3
# import sympy import Point, Polygon, Line
from sympy import Point, Polygon, Line
# creating points using Point()
p1, p2, p3, p4 = map(Point, [(0, 2), (0, 0), (1, 0), (1, 2)])
# creating polygon using Polygon()
poly = Polygon(p1, p2, p3, p4)
# using cut_section()
cutSection = poly.cut_section(Line((0, 1), slope = 1))
print(cutSection)
输出:
(Triangle(Point2D(0, 2), Point2D(0, 1), Point2D(1, 2)), Polygon(Point2D(0, 1), Point2D(0, 0), Point2D(1, 0), Point2D(1, 2)))
相关用法
- Python sympy.eye()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.ones()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.Mul()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.cos()用法及代码示例
- Python sympy.sin()用法及代码示例
- Python sympy.log()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python sympy.csc()用法及代码示例
- Python sympy.has()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.S()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python – Sympy Polygon.cut_section() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。