Houdini 20.0 hapi

hapi.getVertexList function

Get array containing the vertex-point associations where the

Usage

getVertexList(session: hapi.Session, node_id: int, part_id: int, start: int, length: int) → list of int

Get array containing the vertex-point associations where the ith element in the array is the point index the ith vertex associates with.

session

The session of Houdini you are interacting with. See hapi.Session for more on sessions. Pass None to just use the default in-process session.

node_id

The node id.

part_id

The part id.

start

First index of range. Must be at least 0 and at most hapi.PartInfo.vertexCount - 1.

length

Must be at least 0 and at most hapi.PartInfo.vertexCount - start.

Returns vertex_list_array as a list of int.

hapi