當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Sympy Polygon.distance()用法及代碼示例


在Sympy中,函數Polygon.distance()用於返回給定多邊形與o之間的最短距離。如果o是一個點,則給定的多邊形不需要是凸的。但是,如果o是另一個多邊形,則給定的多邊形和o必須是凸的。

用法: Polygon.distance(o)

參數:
 o:Point or Polygon

返回: the shortest distance between the given polygon and o.

範例1:

Python3

# import sympy import Point, Polygon 
from sympy import Point, Polygon 
  
# 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 distance() 
shortestDistance = poly.distance(Point(3, 5)) 
  
print(shortestDistance)

輸出:

sqrt(13)

範例2:

Python3

# import sympy import Point, Polygon, RegularPolygon 
from sympy import Point, Polygon, RegularPolygon 
  
# creating points using Point() 
p1, p2 = map(Point, [(0, 0), (7, 5)]) 
  
# creating polygon using Polygon() and RegularPolygon() 
poly = Polygon(*RegularPolygon(p1, 1, 3).vertices) 
  
# using distance() 
shortestDistance = poly.distance(p2) 
  
print(shortestDistance)

輸出:

sqrt(61)

相關用法


注:本文由純淨天空篩選整理自ravikishor大神的英文原創作品 Python – Sympy Polygon.distance() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。