高さと角度から、底辺と斜辺を計算するサンプル
import math
# 角度
angle = 45
# 高さ
height = 10
# 高さと角度から底辺を求める
bottom = height / math.tan(math.pi * angle / 180)
# 高さと角度から斜辺を求める
hypotenuse = height / math.sin(math.pi * angle / 180)
print(bottom)
print(hypotenuse)
戻る
ホームページ テンプレート フリー
Design by