Tabulate coordinates of function space degrees-of-freedom. Returns: Coordinates of the degrees-of-freedom. Note: This method is only for elements with point evaluation degrees-of-freedom.
(self)
| 853 | return V, dofs |
| 854 | |
| 855 | def tabulate_dof_coordinates(self) -> npt.NDArray[Real]: |
| 856 | """Tabulate coordinates of function space degrees-of-freedom. |
| 857 | |
| 858 | Returns: |
| 859 | Coordinates of the degrees-of-freedom. |
| 860 | |
| 861 | Note: |
| 862 | This method is only for elements with point evaluation |
| 863 | degrees-of-freedom. |
| 864 | """ |
| 865 | return self._cpp_object.tabulate_dof_coordinates() |
no outgoing calls