diff --git a/meshmode/mesh/tesselate.py b/meshmode/mesh/tesselate.py index 5d0e03aef4b9b2a8ac9ead1571dbdea1290ea2a7..ce7145c6b18dc5d6f74c37991c174658c5530e98 100644 --- a/meshmode/mesh/tesselate.py +++ b/meshmode/mesh/tesselate.py @@ -27,8 +27,8 @@ def tesselatetri(): if len(result) > 0: return [node_tuples, result] for current in node_tuples: - # this is a tesselation of a cube into six tets. - # subtets that fall outside of the master tet are simply not added. + # this is a tesselation of a square into two triangles. + # subtriangles that fall outside of the master tet are simply not added. # positively oriented try_add_tri(current, (0, 0), (1, 0), (0, 1))