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