Interpolate a fem.Function.
(u0: Function)
| 519 | |
| 520 | @_interpolate.register(Function) |
| 521 | def _(u0: Function): |
| 522 | """Interpolate a fem.Function.""" |
| 523 | self._cpp_object.interpolate(u0._cpp_object, cells0, cells1) |
| 524 | |
| 525 | @_interpolate.register(int) |
| 526 | def _(u0_ptr: int): |
nothing calls this directly
no test coverage detected