本文整理匯總了Python中polygon.Polygon.compute_area方法的典型用法代碼示例。如果您正苦於以下問題:Python Polygon.compute_area方法的具體用法?Python Polygon.compute_area怎麽用?Python Polygon.compute_area使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類polygon.Polygon
的用法示例。
在下文中一共展示了Polygon.compute_area方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from polygon import Polygon [as 別名]
# 或者: from polygon.Polygon import compute_area [as 別名]
#.........這裏部分代碼省略.........
self.polygon = Polygon(self, self.source)
self.draw_status = False
self.play = Play(self.source, self)
self.play.run_setup()
self.background = Background(self.source)
def click_setup_play_btn(self):
print("Clicked setup play button!")
self.play.setup_status = True
self.play.setup_timer.start()
self.main_window.setup_pause_btn.setEnabled(True)
self.main_window.setup_play_btn.setEnabled(False)
def click_setup_pause_btn(self):
print("Clicked setup pause button!")
self.play.setup_status = False
self.play.setup_timer.stop()
self.main_window.setup_pause_btn.setEnabled(False)
self.main_window.setup_play_btn.setEnabled(True)
def click_setup_bg_btn(self):
print("Clicked capture background button")
self.background.capture_frame()
def click_draw_btn(self):
print("Clicked draw button")
self.line_status = False
self.draw_status = True
if self.play.setup_status == False:
self.play.run_setup_pause()
self.main_window.setup_draw_btn.setEnabled(False)
self.main_window.setup_line_btn.setEnabled(True)
# get area of polygon
area = self.polygon.compute_area()
self.main_window.area_lbl.setText(str(self.polygon.area))
def click_line_btn(self):
print("Clicked line button")
self.line_status = True
self.draw_status = False
if self.play.setup_status == False:
self.play.run_setup_pause()
self.main_window.setup_line_btn.setEnabled(False)
self.main_window.setup_draw_btn.setEnabled(True)
self.main_window.area_lbl.setText("")
def click_reset_btn(self):
print("Clicked reset button")
self.polygon.reset()
if self.play.setup_status == False:
self.play.run_setup_reset()
self.main_window.setup_reset_btn.setEnabled(False)
self.main_window.setup_line_btn.setEnabled(False)
self.main_window.setup_draw_btn.setEnabled(False)
self.line_status = False
self.draw_status = False
def setup_frame_click(self, event):
if self.play.setup_status == True:
print("Pause the source before assigning coordinates")
else:
print("Clicked setup frame")
x = event.pos().x()
y = event.pos().y()
print(x, y)
print(event.pos())