Skip to content
8 changes: 4 additions & 4 deletions docs/src/supportmatrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@ Cubature integration rules are recommended (and the default).
| `Cylinder` | ✅ | 🛑 | ✅ |
| `CylinderSurface` | ✅ | ✅ | ✅ |
| `Disk` | ✅ | ✅ | ✅ |
| `Frustum` | 🛑 | 🛑 | 🛑 |
| `FrustumSurface` | 🛑 | 🛑 | 🛑 |
| `Frustum` | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/57) | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/57) | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/57) |
| `FrustumSurface` | | | |
| `Line` | ✅ | ✅ | ✅ |
| `ParaboloidSurface` | ✅ | ✅ | ✅ |
| `Plane` | ✅ | ✅ | ✅ |
| `Ray` | ✅ | ✅ | ✅ |
| `Ring` | ✅ | ✅ | ✅ |
| `Rope` | ✅ | ✅ | ✅ |
| `Segment` | ✅ | ✅ | ✅ |
| `SimpleMesh` | 🎗️ | 🎗️ | 🎗️ |
| `SimpleMesh` | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/27) | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/27) | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/27) |
| `Sphere` in `𝔼{2}` | ✅ | ✅ | ✅ |
| `Sphere` in `𝔼{3}` | ✅ | ✅ | ✅ |
| `Tetrahedron` in `𝔼{3}` | 🎗️ | ✅ | 🎗️ |
| `Tetrahedron` in `𝔼{3}` | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/40) | ✅ | [🎗️](https://github.com/mikeingold/MeshIntegrals.jl/issues/40) |
| `Triangle` | ✅ | ✅ | ✅ |
| `Torus` | ✅ | ✅ | ✅ |
4 changes: 2 additions & 2 deletions src/integral_aliases.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function surfaceintegral(
Dim = Meshes.paramdim(geometry)

if Dim == 2
return integral(f, geometry, GaussKronrod())
return integral(f, geometry, HAdaptiveCubature())
else
error("Performing a surface integral on a geometry with $Dim parametric dimensions not supported.")
end
Expand Down Expand Up @@ -145,7 +145,7 @@ function volumeintegral(
Dim = Meshes.paramdim(geometry)

if Dim == 3
return integral(f, geometry, GaussKronrod())
return integral(f, geometry, HAdaptiveCubature())
else
error("Performing a volume integral on a geometry with $Dim parametric dimensions not supported.")
end
Expand Down
Loading