Skip to content

Commit bb58e6f

Browse files
authored
Update index.html
Structured data
1 parent 3b56b6a commit bb58e6f

1 file changed

Lines changed: 17 additions & 8 deletions

File tree

index.html

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -761,12 +761,16 @@ <h3 itemprop="name" style="margin:7px">Trigonometry</h3>
761761
</div>
762762
<br><br>
763763
<p itemprop="usageInfo" style="margin:12px">Trigonometric functions with an "Arc" prefix refer to the angle corresponding to a value of that function.</p>
764-
<div itemprop="subjectOf" itemscope itemtype="https://schema.org/CreativeWork" id="trigonometry_engine">
765-
<meta itemprop="name" content="Trigonometry engine">
766-
<meta itemprop="isAccessibleForFree" content="true">
764+
<div itemprop="subjectOf" itemscope itemtype="https://schema.org/SoftwareApplication" id="trigonometry_engine">
765+
<meta itemprop="name" content="Trigonometry">
767766
<meta itemprop="description" content="Lookup-based trigonometry value finder for the calculator apps. Values aligned to circumference=6.4radius with ~ ± rad / 100 accuracy.">
768767
<meta itemprop="disambiguatingDescription" content="The arc values are more accurate than the results of other tools with many decimals for any value but based on the pi=3.14...">
769-
<meta itemprop="usageInfo" content="Defines independent trigonometric functions. The steps are limited by the number of entries.">
768+
<meta itemprop="applicationCategory" content="Trigonometry engine">
769+
<meta itemprop="featureList" content="Defines independent trigonometric functions.">
770+
<meta itemprop="interactivityType" content="Expositive">
771+
<meta itemprop="isAccessibleForFree" content="true">
772+
<meta itemprop="operatingSystem" content="Web">
773+
<meta itemprop="usageInfo" content="The steps are limited by the number of entries.">
770774
<script type="module" async>
771775

772776
// ---- Trigonometry ----
@@ -1478,8 +1482,7 @@ <h3 itemprop="name" style="margin:7px">Trigonometry</h3>
14781482
<meta itemprop="inLanguage" content="en">
14791483
<meta itemprop="accessibilityHazard" content="none">
14801484
<meta itemprop="accessibilitySummary" content="Equations with figures and explanations">
1481-
<meta itemprop="accessMode" content="textual">
1482-
<meta itemprop="accessMode" content="visual">
1485+
<meta itemprop="accessMode" content="mathOnVisual">
14831486
<meta itemprop="isAccessibleForFree" content="true">
14841487
<meta itemprop="isFamilyFriendly" content="true">
14851488
<meta itemprop="keywords" content="Core Geometric System, Exact Geometric Calculations, Analysis, Engineering Design Solutions, Computer Graphics Rendering, Algorithm Optimization, Navigation">
@@ -1601,19 +1604,25 @@ <h3 style="margin:7px" itemprop="eduQuestionType">Area of a Triangle</h3>
16011604
<br><br>
16021605
<div itemprop="subjectOf" itemscope itemtype="https://schema.org/SoftwareApplication" style="margin:12px" id="triangle_area_calculator">
16031606
<meta itemprop="name" content="Triangle Area Calculator">
1607+
<meta itemprop="description" content="Calculate the area of a triangle from the lengths of its sides.">
1608+
<meta itemprop="accessibilityControl" content="fullKeyboardControl">
16041609
<meta itemprop="applicationCategory" content="Geometric Calculator">
16051610
<meta itemprop="operatingSystem" content="Web">
1611+
<meta itemprop="interactivityType" content="Active">
16061612
<meta itemprop="isAccessibleForFree" content="true">
1607-
<meta itemprop="description" content="Calculate the area of a triangle from the lengths of its sides.">
16081613
<meta itemprop="usageInfo" content="Enter the lengths of the sides of the triangles one by one.">
1609-
<label for="side1">Side 1:</label>
1614+
<div itemprop="assesses" itemscope itemtype="https://schema.org/Observation">
1615+
<div itemprop="measuredProperty" itemscope itemtype="https://schema.org/Property">
1616+
<label itemprop="name" for="side1">Side 1:</label>
16101617
<input id="side1" type="number" value="1" step="any">
1618+
</div>
16111619
<br>
16121620
<label for="side2">Side 2:</label>
16131621
<input id="side2" type="number" value="1" step="any">
16141622
<br>
16151623
<label for="side3">Side 3:</label>
16161624
<input id="side3" type="number" value="1" step="any">
1625+
</div>
16171626
<script type="module" async>
16181627
function triangleArea(product) {
16191628
return Math.sqrt(product);

0 commit comments

Comments
 (0)