SbStructuredQuadrilateralMeshSetVertex Method |
Sets the position of a vertex.
Namespace: OIV.ImageVizAssembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public void SetVertex(
ulong i,
ulong j,
SbVec3f vertex
)
Public Sub SetVertex (
i As ULong,
j As ULong,
vertex As SbVec3f
)
public:
void SetVertex(
unsigned long long i,
unsigned long long j,
SbVec3f vertex
)
member SetVertex :
i : uint64 *
j : uint64 *
vertex : SbVec3f -> unit
Parameters
- i
- Type: SystemUInt64
column index of the vertex to modify. i must be in range [0-getNumCellsI()].
- j
- Type: SystemUInt64
row index of the vertex to modify. j must be in range [0-getNumCellsJ()].
- vertex
- Type: OIV.InventorSbVec3f
new value.
Remarks Throws an error if the indices are out of the mesh range.
See Also