1
2
3
4
export function vSphere(radius: number) {
const V = (4 / 3) * Math.PI * Math.pow(radius, 3);
return V;
}