From aae530e7fb420d60ae3eccaf7e17855fd1b5551c Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Sat, 11 Sep 2021 02:51:21 -0700 Subject: [PATCH] Tweaks to trig docs. --- trigonometry.scad | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/trigonometry.scad b/trigonometry.scad index d4198c7..3db6aaf 100644 --- a/trigonometry.scad +++ b/trigonometry.scad @@ -110,10 +110,11 @@ function triangle_area(p1,p2,p3) = // Section: 2D Right Triangle Functions // This is a set of functions to make it easier to perform trig calculations on right triangles. // In general, all these functions are named using these abbreviations: -// - *hyp*: The length of the Hypotenuse. -// - *adj*: The length of the side adjacent to the angle. -// - *opp*: The length of the side opposite to the angle. -// - *ang*: The angle size in degrees. +// - **hyp**: The length of the Hypotenuse. +// - **adj**: The length of the side adjacent to the angle. +// - **opp**: The length of the side opposite to the angle. +// - **ang**: The angle size in degrees. +// . // If you know two of those, and want to know the value of a third, you will need to call a // function named like `AAA_BBB_to_CCC()`. For example, if you know the length of the hypotenuse, // and the length of the side adjacent to the angle, and want to learn the length of the side