For a while now, I've been working on filling in 72% of a circle with a hole cut out of the middle. Throughout this process, I have been consulting different resources - like this method for calculating and this one for other aspects. However, I’ve been facing an issue with negative cosine calculations that prevent me from achieving the desired arc. My understanding of HTML is limited, so I believe the problem may be my own misunderstanding. Any advice or guidance would be greatly appreciated!
Below is an example of the code demonstrating a 12% version which I managed to get working. While attempting a 72% version has proven challenging, I've done my best to replicate it as closely as possible.
<svg focusable="false" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" tabindex="-1" height="60%" width="60%" viewBox="-5 -5 410 410" style="display: block; fill: transparent; position: absolute; right: 15px; bottom: 15px;">
<circle aria-hidden="true" tabindex="-1" cx="200" cy="200" r="200" style="stroke: rgb(139, 138, 175); stroke-width: 5px;"></circle>
<path aria-hidden="true" tabindex="-1" d="M 200 0 A 200 200 0 1 1 199.8000000333334 0.00009999999167575879 L 199.87500002083337 75.0000624999948 A 125 125 0 1 0 200 75 Z" fill="#FFFFFF"></path>
<path aria-hidden="true" tabindex="-1" d="M 200 0 A 200 200 0 0 1 199.80000003333333 0.00009999999167575879 L 199.87500002083334 75.0000624999948 A 125 125 0 0 0 200 75 Z" fill="#00ACC8"></path>
<path aria-hidden="true" tabindex="-1" d="M 200 0 A 200 200 0 0 1 336.76355902984756 54.06943801420687 L 285.4772243936547 108.79339875887929 A 125 125 0 0 0 200 75 Z" fill="#00ACC8"></path>
<circle aria-hidden="true" tabindex="-1" cx="200" cy="200" r="125" style="stroke: rgb(139, 138, 175); stroke-width: 2.5px; fill: transparent;"></circle><text aria-hidden="true" tabindex="-1" x="50%" y="50%" dy="7%" style="text-anchor: middle; font-weight: bold; font-size: 115px; fill: rgb(70, 112, 125);">12</text>
</svg>