We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
discontinous
Introduce a method for transforming a connected mesh into a disconnected mesh. Template code:
import numpy as np from felupe import Mesh def as_discontinous(self): points = self.points[self.cells].reshape(-1, self.dim) cells = np.arange(self.cells.size).reshape(*self.cells.shape) return Mesh(points, cells, cell_type=self.cell_type)
The text was updated successfully, but these errors were encountered:
as_discontinous
adtzlr
No branches or pull requests
Introduce a method for transforming a connected mesh into a disconnected mesh. Template code:
The text was updated successfully, but these errors were encountered: