陳映年python時間函式time.sleep
VS Code截圖 VS Code程式碼 from tkinter import * #從函式庫 tkinter 輸入所有 * 方法 from math import * #從函式庫 math 輸入所有 * 方法 from time import * #取代import time class Regular : def __init__ ( self , cx , cy , cr , s , t , c , w ): #類別共同的設定 self .cx, self .cy, self .cr = cx, cy, cr #取得中心座標cx, cy, 半徑cr self .s, self .t = s, t #取得邊角數目s,t尖銳程度,取代原來的k = s.get() self .c, self .w = c, w #取得顏色c,寬度w self .u = 2 * pi / self .s #使用模組 math 圓周率 pi self .x, self .y = [], [] for i in range ( int ( self .s * 1.5 )): self .x.append( self .cx + self .cr * cos(i * self .u)) self .y.append( self .cy + self .cr * sin(i * self .u)) def draw ( self )...
留言
張貼留言