Description:

Removes the vertices at the given indices and all faces that reference those vertices.

Syntax:
public bool Remove(
IEnumerable<int> indices,
bool shrinkFaces
)
Parameters:
  • indices
  • Type: IEnumerable<int>
  • Vertex indices to remove.
  • shrinkFaces
  • Type: bool
  • If true, quads that reference the deleted vertex will be converted to triangles.
Returns:
Type: bool
True on success, False on failure.
Available since:
5.0

Description:

Removes the vertex at the given index and all faces that reference that index.

Syntax:
public bool Remove(
int index,
bool shrinkFaces
)
Parameters:
  • index
  • Type: int
  • Index of vertex to remove.
  • shrinkFaces
  • Type: bool
  • If true, quads that reference the deleted vertex will be converted to triangles.
Returns:
Type: bool
True on success, False on failure.
Available since:
5.0

Nothing found