Method
create_element_wise_isotropic
(cls, density, mesh,
young_attribute_name, poisson_attribute_name)
Source from the content-addressed store, hash-verified
| 34 | |
| 35 | @classmethod |
| 36 | def create_element_wise_isotropic(cls, density, mesh, |
| 37 | young_attribute_name, poisson_attribute_name): |
| 38 | return Material(PyMesh.Material.create_element_wise_isotropic( |
| 39 | density, mesh.raw_mesh, |
| 40 | young_attribute_name, poisson_attribute_name)) |
| 41 | |
| 42 | def __init__(self, raw_material=None): |
| 43 | self.raw_material = raw_material |
Callers
nothing calls this directly
Tested by
no test coverage detected