Interface MiTopologyIj

All Superinterfaces:
MiTopology
All Known Subinterfaces:
MeXTopologyIj

public interface MiTopologyIj extends MiTopology
List of structured surface cells interface.

A generic interface for a structured implicit surface mesh topology.
Cells are all implicitly defined as quadrangles so there is no need for specifying a list of cells.
The number of cells on each dimension defines completely the topology.

  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Returns the number of cells on the first logical axis.
    long
    Returns the number of cells on the second logical axis.
    boolean
    isDead(long i, long j)
    Returns true if the cell at the specified position should be ignored.

    Methods inherited from interface com.openinventor.meshvizxlm.mesh.topology.MiTopology

    getTimeStamp, hasDeadCells
  • Method Details

    • getNumCellsI

      long getNumCellsI()
      Returns the number of cells on the first logical axis.
      Returns:
      the number of cells on the first logical axis.
    • getNumCellsJ

      long getNumCellsJ()
      Returns the number of cells on the second logical axis.
      Returns:
      the number of cells on the second logical axis.
    • isDead

      boolean isDead(long i, long j)
      Returns true if the cell at the specified position should be ignored.

      This value is ignored if the hasDeadCell method returns false.

      Parameters:
      i - i-index of the cell to check
      j - j-index of the cell to check
      Returns:
      true if the cell should be ignored