Skip to content

Commit 20043ea

Browse files
committed
moving mesh docs
1 parent 666e4a9 commit 20043ea

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/source/point-evaluation.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,8 @@ parent mesh and the points to evaluate at:
254254
255255
point_evaluator = PointEvaluator(mesh, points)
256256
257-
Then to evaluate a :py:class:`~.Function` defined on the parent mesh at the given points,
257+
Internally, this creates a vertex-only mesh at the given points, immersed in the given mesh.
258+
To evaluate a :py:class:`~.Function` defined on the parent mesh at the given points,
258259
we use :meth:`~.PointEvaluator.evaluate`:
259260

260261
.. code-block:: python3
@@ -276,6 +277,9 @@ The parameters ``missing_points_behaviour`` and ``tolerance`` (discussed :ref:`h
276277
and :ref:`here <tolerance>` respectively) can be set when creating the :py:class:`~.PointEvaluator`
277278
and will be passed to the :func:`~.VertexOnlyMesh` it creates internally.
278279

280+
If the :ref:`mesh coordinates are changed <changing_coordinate_fs>`, then the vertex-only mesh
281+
will be re-immersed in the new mesh the next time :meth:`~.PointEvaluator.evaluate` is called.
282+
279283

280284
Expressions with point evaluations
281285
----------------------------------

0 commit comments

Comments
 (0)