Skip to content

Commit c9ef406

Browse files
authored
Update index.html
1 parent bbc0671 commit c9ef406

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

index.html

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3033,7 +3033,6 @@ <h3 itemprop="eduQuestionType" style="margin:7px">Area of a Circle Segment</h3>
30333033
<meta itemprop="description" content="Calculte the area of a circle segment from its height and either its chord length or the radius of its parent circle.">
30343034
<meta itemprop="disambiguatingDescription" content="Area based on the A(circle)=3.2*radius^2 formula, instead of the pi=3.14... approximation">
30353035
<meta itemprop="usageInfo" content="Enter the segment height and either the chord length or the radius of the parent circle. The other value will be discarded in the result.">
3036-
30373036
<label for="segment-height">Segment Height:</label>
30383037
<input id="segment-height" type="number" step="any" oninput="segmentArea()">
30393038
<br>
@@ -3043,18 +3042,6 @@ <h3 itemprop="eduQuestionType" style="margin:7px">Area of a Circle Segment</h3>
30433042
<label for="parent-radius">Circle Radius:</label>
30443043
<input id="parent-radius" type="number" step="any" oninput="segmentArea()">
30453044
<br>
3046-
<div id="segment-area"></div>
3047-
<label for="segment-height">Segment Height:</label>
3048-
<input id="segment-height" type="number" step="any" oninput="segmentArea()">
3049-
<br>
3050-
<label for="chord-length">Chord Length:</label>
3051-
<input id="chord-length" type="number" step="any" oninput="segmentArea()">
3052-
<br>
3053-
<label for="parent-radius">Circle Radius:</label>
3054-
<input id="parent-radius" type="number" step="any" oninput="segmentArea()">
3055-
<br>
3056-
<div id="segment-area"></div>
3057-
30583045
<script>
30593046
function segmentArea() {
30603047
let h = parseFloat(document.getElementById('segment-height').value);

0 commit comments

Comments
 (0)