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