Files
modeling-app/docs/kcl-std/functions/std-math-legAngY.md
Nick Cameron 4d1524f03b Format examples in docs (#7378)
Signed-off-by: Nick Cameron <nrc@ncameron.org>
2025-06-05 18:01:45 -04:00

778 B

title, subtitle, excerpt, layout
title subtitle excerpt layout
legAngY Function in std::math Compute the angle of the given leg for y. manual

Compute the angle of the given leg for y.

legAngY(
  hypotenuse: number(Length),
  leg: number(Length),
): number(deg)

Arguments

Name Type Description Required
hypotenuse number(Length) The length of the triangle's hypotenuse. Yes
leg number(Length) The length of one of the triangle's legs (i.e. non-hypotenuse side). Yes

Returns

number(deg) - A number.

Examples

legAngY(hypotenuse = 5, leg = 3)