Software for computing geometirc data of parametric surfaces

92 Views Asked by At

Is there any (possibly free) software suitable for computing geometric quantities of parametric surfaces?

Any suggestion will be very appreciated.

1

There are 1 best solutions below

0
On BEST ANSWER

Sage is a free piece of software similar to Mathematica. Check it out here.

For example, to compute the Gaussian and mean curvatures of the sphere,

sage: sphere = surfaces.Sphere(); sphere
sage: K = sphere.gauss_curvature();
sage: H = sphere.mean_curvature();

See here for more functions.

This MO answer also contains many other software links.

This link is particularly useful to find software oriented to a particular field.