Collision Mesh¶
- class ipctk.CollisionMesh¶
- are_adjacencies_initialized(self) bool ¶
Determine if the adjacencies have been initialized by calling init_adjacencies().
- static build_from_full_mesh(full_vertices_at_rest: numpy.ndarray[numpy.float64[m, n]], edges: numpy.ndarray[numpy.int32[m, n]], faces: numpy.ndarray[numpy.int32[m, n]]) ipctk.CollisionMesh ¶
Helper function that automatically builds include_vertex using construct_is_on_surface.
- property can_collide : std::function<bool (unsigned long, unsigned long)>¶
A function that takes two vertex IDs (row numbers in V) and returns true if the vertices (and faces or edges containing the vertices) can collide. By default all primitives can collide with all other primitives.
- static construct_faces_to_edges(faces: numpy.ndarray[numpy.int32[m, n]], edges: numpy.ndarray[numpy.int32[m, n]]) numpy.ndarray[numpy.int32[m, n]] ¶
Construct a matrix that maps from the faces’ edges to rows in the edges matrix.
- static construct_is_on_surface(num_vertices: int, edges: numpy.ndarray[numpy.int32[m, n]]) list[bool] ¶
- displace_vertices(self, full_displacements: numpy.ndarray[numpy.float64[m, n]]) numpy.ndarray[numpy.float64[m, n]] ¶
- to_full_dof(*args, **kwargs)¶
Overloaded function.
to_full_dof(self: ipctk.CollisionMesh, x: numpy.ndarray[numpy.float64[m, 1]]) -> numpy.ndarray[numpy.float64[m, 1]]
to_full_dof(self: ipctk.CollisionMesh, X: scipy.sparse.csc_matrix[numpy.float64]) -> scipy.sparse.csc_matrix[numpy.float64]
- vertices(self, full_vertices: numpy.ndarray[numpy.float64[m, n]]) numpy.ndarray[numpy.float64[m, n]] ¶