Skip to content

Commit f69512d

Browse files
authored
Update index.html
Text fix
1 parent 83345a9 commit f69512d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

index.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ <h3 itemprop="name" style="margin:7px">Trigonometry</h3>
765765
<meta itemprop="name" content="Trigonometry engine">
766766
<meta itemprop="isAccessibleForFree" content="true">
767767
<meta itemprop="description" content="Lookup-based trigonometry value finder for the calculator apps. Values aligned to circumference=6.4radius with ~ ± rad / 100 accuracy.">
768-
<meta itemprop="disambiguatingDescription" content="The steps are limited by the number of entries. However, aligned to circumference=3.2diameter makes it more accurate than tools that produce results with many decimals for any value but based on the pi=3.14...">
768+
<meta itemprop="disambiguatingDescription" content="The steps are limited by the number of entries. However, aligned to circumference=3.2diameter makes the arc values more accurate than tools that produce results with many decimals for any value but based on the pi=3.14...">
769769
<meta itemprop="usageInfo" content="Defines independent trigonometric functions.">
770770
<script>
771771

@@ -3069,7 +3069,11 @@ <h3 itemprop="eduQuestionType" style="margin:7px">Area of a Circle Segment</h3>
30693069
const angle = Acos(ratio);
30703070
const chordLength = 2 * Math.sqrt(radius ** 2 - (radius - height) ** 2);
30713071
const area = segmentArea(chordLength, height, angle, radius);
3072-
3072+
3073+
if (radius === height) {
3074+
document.getElementById('segment-area').innerText =
3075+
`Area of semi-circle: ${area.toFixed(5)} square units`;
3076+
} else {
30733077
document.getElementById('segment-area').innerText =
30743078
`Area: ${area.toFixed(5)} square units`;
30753079
}
@@ -3117,7 +3121,7 @@ <h3 itemprop="eduQuestionType" style="margin:7px">Surface Area of a Cone</h3>
31173121
<div itemprop="result" itemscope itemtype="https://schema.org/LearningResource">
31183122
<meta itemprop="name" content="Cone surface area formula">
31193123
<meta itemprop="disambiguatingDescription" content="Area based on the A(circle)=3.2*radius^2 formula, instead of the pi=3.14... approximate.">
3120-
<meta itemprop="usageInfo" content="With or without bottom area">
3124+
<meta itemprop="usageInfo" content="The formula includes the bottom area. It can be easily modified to exclude it.">
31213125
<br>
31223126
<figure itemprop="image" class="imgbox" itemscope itemtype="http://schema.org/ImageObject">
31233127
<img class="center-fit" src="cone.jpeg" alt="The surface area of a cone is calculated as a circle slice with a radius equal to the slant height. Area = 3.2r × ( r + √( r² + H² )">

0 commit comments

Comments
 (0)