itasca.wall.vertex

Functions and classes for working with Itasca wall vertices.

Functions

itasca.wall.vertex.count() int.

Get the number of wall vertices.

itasca.wall.vertex.find(id: int) WallVertex object.

Get the WallVertex object with the given ID number.

itasca.wall.vertex.inbox(lower_bound: vec, upper_bound: vec, boundary=False) tuple of WallVertex objects.

Get vertices with extents intersecting a box. If the optional keyword argument boundary is True only return the vertexs inside the extent.

itasca.wall.vertex.list() WallVertex iterator.

Get a WallVertex iterator object.

itasca.wall.vertex.maxid() int.

Get the maximum vertex ID.

itasca.wall.vertex.near(point: vec) WallVertex object.

Find the closest vertex to a point.

Classes