File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,8 @@ parent mesh and the points to evaluate at:
254
254
255
255
point_evaluator = PointEvaluator(mesh, points)
256
256
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,
258
259
we use :meth: `~.PointEvaluator.evaluate `:
259
260
260
261
.. code-block :: python3
@@ -276,6 +277,9 @@ The parameters ``missing_points_behaviour`` and ``tolerance`` (discussed :ref:`h
276
277
and :ref: `here <tolerance >` respectively) can be set when creating the :py:class: `~.PointEvaluator `
277
278
and will be passed to the :func: `~.VertexOnlyMesh ` it creates internally.
278
279
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
+
279
283
280
284
Expressions with point evaluations
281
285
----------------------------------
You can’t perform that action at this time.
0 commit comments