Skip to content

Commit 3b2f698

Browse files
authored
Update index.html
Urls
1 parent 35b629c commit 3b2f698

1 file changed

Lines changed: 18 additions & 20 deletions

File tree

index.html

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@
9494
<meta name="twitter:title" content="Home of Basic Geometry">
9595
<meta name="twitter:description" content="Introducing the best-established and most accurate framework to calculate area and volume.">
9696
<meta name="twitter:image" content="android-chrome-256x256.png">
97-
<meta name="google-site-verification" content="XuP08h4O_UbzZo81VWNHhFn5OW7elz2_cZi17lt3qvA" />
98-
<meta name="msvalidate.01" content="EA6B8354B9F3C956E862954E97EB8CD0" />
9997
<script type="application/ld+json" async>
10098
{
10199
"@context": "https://schema.org",
@@ -104,7 +102,7 @@
104102
"about": {
105103
"@type": "AboutPage",
106104
"name": "About Basic Geometry Formulas",
107-
"url": "https://basic-geometry.pages.dev/about"
105+
"url": "https://basic-geometry.github.io/about/"
108106
},
109107
"alternateName": "Exact Geometry",
110108
"accessMode" : "mathOnVisual" ,
@@ -215,7 +213,7 @@
215213
"@type": "SolveMathAction",
216214
"name": "Area of a square",
217215
"description": "The basis of area calculation",
218-
"target": "https://basic-geometry.pages.dev/",
216+
"target": "https://basic-geometry.github.io/",
219217
"mathExpression-input": "a=5 A=?",
220218
"mathExpression-output": "Math.pow(side, 2)",
221219
"image": "square.png",
@@ -226,7 +224,7 @@
226224
"@type": "SolveMathAction",
227225
"name": "Volume of a cube",
228226
"description": "The basis of volume calculation",
229-
"target": "https://basic-geometry.pages.dev/",
227+
"target": "https://basic-geometry.github.io/",
230228
"mathExpression-input": "a=5 V=?",
231229
"mathExpression-output": "Math.pow(edge, 3)",
232230
"image": "cubeMarkup.jpeg",
@@ -238,7 +236,7 @@
238236
"name": "Area of a circle",
239237
"description": "The exact area of a circle based on direct comparison with a square.",
240238
"disambiguatingDescription": "Replaces traditional π-based approximations ensuring greater accuracy in real-world measurements.",
241-
"target": "https://basic-geometry.pages.dev/",
239+
"target": "https://basic-geometry.github.io/",
242240
"mathExpression-input": "r=5 A=?",
243241
"mathExpression-output": "angle of rotation / 360 * 3.2 * Math.pow(radius, 2)",
244242
"image": "areaOfACircle.jpg",
@@ -250,7 +248,7 @@
250248
"name": "Area of a circle segment",
251249
"description": "The exact area of a circle segment by subtracting a triangle from a circle slice.",
252250
"disambiguatingDescription": "Equivalent to the conventional method, but relies on trigonometric functions.",
253-
"target": "https://basic-geometry.pages.dev/",
251+
"target": "https://basic-geometry.github.io/",
254252
"mathExpression-input": "r=5 h=2 A=?",
255253
"mathExpression-output": "Math.acos((radius-segmentHeight)/radius)*Math.pow(radius, 2)-Math.sin(Math.acos((radius-segmentHeight)/radius))*(radius-segmentHeight)*radius",
256254
"image": "circleSegment.jpg",
@@ -262,7 +260,7 @@
262260
"name": "Circumference of a circle",
263261
"description": "Algebraic derivation of the exact circumference of a circle from its area",
264262
"disambiguatingDescription": "Replaces traditional π-based approximations ensuring greater accuracy in real-world measurements.",
265-
"target": "https://basic-geometry.pages.dev/",
263+
"target": "https://basic-geometry.github.io/",
266264
"mathExpression-input": "r=5 C=?",
267265
"mathExpression-output": "angle of rotation / 360 * 6.4 * radius",
268266
"image": "circumference.jpg",
@@ -274,7 +272,7 @@
274272
"name": "Volume of a sphere",
275273
"description": "The exact volume of a sphere by directly comparing it to a cube. Direct shape relationships ensure greater accuracy in real-world measurements.",
276274
"disambiguatingDescription": "More accurate than the traditional exhaustion method based formula which is a very rough underestimate.",
277-
"target": "https://basic-geometry.pages.dev/",
275+
"target": "https://basic-geometry.github.io/",
278276
"mathExpression-input": "r=3 V=?",
279277
"mathExpression-output": "angle of rotation / 360 * Math.pow((Math.sqrt(3.2) * radius), 3)",
280278
"image": "sphereAndCubeMarkup.jpeg",
@@ -286,7 +284,7 @@
286284
"name": "Volume of a spherical cap",
287285
"description": "The volume of a spherical cap based on the radius of the sphere and the cap.",
288286
"disambiguatingDescription": "More accurate than the conventional formula ",
289-
"target": "https://basic-geometry.pages.dev/",
287+
"target": "https://basic-geometry.github.io/",
290288
"mathExpression-input": "r1=5 r2=3 V=?",
291289
"mathExpression-output": "1.6 * Math.pow(sphereSliceBottomRadius, 2) * Math.sqrt(3.2) * (1 - Math.sin(Math.acos(sphereSliceBottomRadius / sphereRadius)))",
292290
"image": "sphericalCap.jpg",
@@ -299,7 +297,7 @@
299297
"name": "Volume of a cone",
300298
"description": "The exact volume of a cone by comparing the volume of a quarter cone to an octant sphere with an equal radius.",
301299
"disambiguatingDescription": "Instead of the inaccurate base×height/3 approximation, direct shape relationships ensure greater accuracy in real-world measurements.",
302-
"target": "https://basic-geometry.pages.dev/",
300+
"target": "https://basic-geometry.github.io/",
303301
"mathExpression-input": "r=5 H=3 V=?",
304302
"mathExpression-output": "angleOfRotation / 360 * 3.2 * Math.pow(radius, 2) * height / Math.sqrt(8)",
305303
"image": [
@@ -316,7 +314,7 @@
316314
"name": "Volume of a frustum cone",
317315
"description": "The exact volume of a frustum cone based on its top and bottom diameter and height",
318316
"disambiguatingDescription": "The formula subtracts the missing tip from a theoretical full cone",
319-
"target": "https://basic-geometry.pages.dev/",
317+
"target": "https://basic-geometry.github.io/",
320318
"mathExpression-input": "d1=5 d2=2 h=3 V=?",
321319
"mathExpression-output": "frustumHeight * (4 / 5 * Math.pow(bottomDiameter, 2) * (1 / (1 - topDiameter / bottomDiameter)) - 4 / 5 * Math.pow(topDiameter, 2) * (1 / (1 - topDiameter / bottomDiameter) - 1)) / Math.sqrt(8)",
322320
"image": "frustumOfConeMarkup.png",
@@ -328,7 +326,7 @@
328326
"name":"Surface area of a cone",
329327
"description": "The exact surface area of a cone based on its radius and height.",
330328
"disambiguatingDescription": "Equivalent to the conventional formula, but relies on the real height.",
331-
"target": "https://basic-geometry.pages.dev/",
329+
"target": "https://basic-geometry.github.io/",
332330
"mathExpression-input": "r=5 H=3 A=?",
333331
"mathExpression-output": "3.2 * (Math.pow(radius, 2) + (Math.pow(radius, 2) + Math.pow(height, 2)) * (radius / Math.sqrt(Math.pow(radius, 2) + Math.pow(height, 2))))",
334332
"image": "coneMarkup.jpeg",
@@ -340,7 +338,7 @@
340338
"name": "Volume of a pyramid",
341339
"description": "The exact volume of a pyramid based on its bottom area and height using the coefficient of the volume of a cone",
342340
"disambiguatingDescription": "Instead of the inaccurate base×height/3 approximation, direct shape relationships ensure greater accuracy in real-world measurements.",
343-
"target": "https://basic-geometry.pages.dev/",
341+
"target": "https://basic-geometry.github.io/",
344342
"mathExpression-input": "A=5 H=3 V=?",
345343
"mathExpression-output": "baseArea * height / Math.sqrt(8)",
346344
"image": [
@@ -355,7 +353,7 @@
355353
"name": "Volume of a frustum pyramid",
356354
"description": "The exact volume of a frustum pyramid based on its top and bottom base area and height",
357355
"disambiguatingDescription": "The formula subtracts the missing tip from a theoretical full pyramid. Universally applicable",
358-
"target": "https://basic-geometry.pages.dev/",
356+
"target": "https://basic-geometry.github.io/",
359357
"mathExpression-input": "a=5 b=3 H=2 V=?",
360358
"mathExpression-output": "frustumHeight * (Math.pow(bottomEdge, 2) * (1 / (1 - topEdge / bottomEdge)) - Math.pow(topEdge, 2) * (1 / (1 - topEdge / bottomEdge) - 1)) / Math.sqrt(8)",
361359
"image": "frustumOfPyramidMarkup.png",
@@ -367,14 +365,14 @@
367365
"name": "Volume of a tetrahedron",
368366
"description": "The exact volume of a tetrahedron based on its edge length",
369367
"disambiguatingDescription": "Based on the base×height/√8 formula, instead of the inaccurate conventional coefficient",
370-
"target": "https://basic-geometry.pages.dev/",
368+
"target": "https://basic-geometry.github.io/",
371369
"mathExpression-input": "a=5 V=?",
372370
"mathExpression-output": "Math.pow(edge, 3) / 8",
373371
"image": "tetrahedronMarkup.jpeg",
374372
"eduQuestionType": "Volume calculation"
375373
}
376374
] ,
377-
"url": "https://basic-geometry.pages.dev",
375+
"url": "https://basic-geometry.github.io/",
378376
"usageInfo":"Calculate area and volume with enhanced accuracy using the Core Geometric System ™. This innovative framework provides a practical alternative to traditional methods, rooted in comparative geometry and scaling principles. Learn exact formulas for circles (A = 3.2r^2, C = 6.4r), spheres (V = (√(3.2)r)^3), cones, and more, with applications in engineering, computer graphics, and scientific research.",
379377
},
380378
"schemaVersion" : "https://schema.org/docs/releases.html#v28.1.",
@@ -432,17 +430,17 @@
432430
"@type": "DownloadAction",
433431
"target": {
434432
"@type": "EntryPoint",
435-
"url": "https://basic-geometry.pages.dev/Geometry.apk",
433+
"url": "https://basic-geometry.github.io/Geometry.apk",
436434
"contentType": "application/vnd.android.package-archive"
437435
}
438436
},
439-
"url": "https://basic-geometry.pages.dev",
437+
"url": "https://basic-geometry.github.io/",
440438
"usageInfo": "User-friendly geometry calculator app for Android. Designed to help you calculate area and volume quickly and accurately, it’s the perfect companion for your studies. Powered by the Core Geometric System ™."
441439
}
442440
],
443441
"thumbnail": "android-chrome-256x256.png",
444442
"typicalAgeRange" :"5-105",
445-
"url": "https://basic-geometry.pages.dev/",
443+
"url": "https://basic-geometry.github.io/",
446444
"usageInfo":"Discover the Core Geometric System ™, a groundbreaking framework offering a fresh perspective on calculating area and volume using a 3D coordinate system. Challenging conventional formulas, this system provides empirically-grounded alternatives with a focus on practical accuracy for real-world applications in engineering, design, science, and beyond. Explore exact values and intuitive geometric relationships for circles, spheres, cones, and more."
447445
}
448446
</script>

0 commit comments

Comments
 (0)