Compute Areas and Volumes in Non-Cartesian Coordinates
The "nut" defined by revolving the curve
about the
axis can be easily parameterized in cylindrical coordinates.
In[1]:=

ParametricPlot3D[
CoordinateTransform[ "Cylindrical" -> "Cartesian", {Sin[z], t, z}] //
Evaluate, {z, 0, Pi}, {t, 0, 2 Pi}, PlotTheme -> "Business"]Out[1]=

Use Area to find the surface area directly in cylindrical coordinates.
In[2]:=
Area[{Sin[z], t, z}, {z, 0, Pi}, {t, 0, 2 Pi}, "Cylindrical"]Out[2]=
Volume can also be computed in non-Cartesian coordinates.
In[3]:=
Volume[{r Sin[z], t, z}, {z, 0, Pi}, {t, 0, 2 Pi}, {r, 0,
1}, "Cylindrical"]Out[3]=
These computations can be carried out in any number of dimensions with RegionMeasure.
In[4]:=
RegionMeasure[{Sin[z], t,
z}, {{z, 0, Pi}, {t, 0, 2 Pi}}, "Cylindrical"]Out[4]=
In[5]:=
RegionMeasure[{r Sin[z], t,
z}, {{z, 0, Pi}, {t, 0, 2 Pi}, {r, 0, 1}}, "Cylindrical"]Out[5]=