Skip to content

Commit

Permalink
Fixed an error in Mesh's document
Browse files Browse the repository at this point in the history
Signed-off-by: Anka Chen <[email protected]>
  • Loading branch information
AnkaChan committed Aug 30, 2024
1 parent da9d002 commit 7556b6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion warp/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3003,7 +3003,7 @@ def __init__(self, points=None, indices=None, velocities=None, support_winding_n
Args:
points (:class:`warp.array`): Array of vertex positions of type :class:`warp.vec3`
indices (:class:`warp.array`): Array of triangle indices of type :class:`warp.int32`, should be a 1d array with shape (num_tris, 3)
indices (:class:`warp.array`): Array of triangle indices of type :class:`warp.int32`, should be a 1d array with shape (num_tris * 3)
velocities (:class:`warp.array`): Array of vertex velocities of type :class:`warp.vec3` (optional)
support_winding_number (bool): If true the mesh will build additional datastructures to support `wp.mesh_query_point_sign_winding_number()` queries
"""
Expand Down

0 comments on commit 7556b6d

Please sign in to comment.