org.jcae.viewer3d.fd
Interface FDProvider

All Superinterfaces:
DomainProvider
All Known Implementing Classes:
DefaultFDProvider, PiafProvider, PL02Provider

public interface FDProvider
extends DomainProvider

A DomainProvider which provide FDDomain objects


Method Summary
 double getXGrid(int index)
          Returns the value along X axis at the specified position.
 int getXGridCount()
          Returns number of cells along X axis
 double getYGrid(int index)
          Returns the value along Y axis at the specified position.
 int getYGridCount()
          Returns number of values along Y axis
 double getZGrid(int index)
          Returns the value along Z axis at the specified position.
 int getZGridCount()
          Returns number of values along Z axis
 
Methods inherited from interface org.jcae.viewer3d.DomainProvider
getDomain, getDomainIDs
 

Method Detail

getXGridCount

int getXGridCount()
Returns number of cells along X axis


getXGrid

double getXGrid(int index)
Returns the value along X axis at the specified position.

Parameters:
index - index of value to return. Value must be between 0 and getXGridCount-1.

getYGridCount

int getYGridCount()
Returns number of values along Y axis


getYGrid

double getYGrid(int index)
Returns the value along Y axis at the specified position.

Parameters:
index - index of value to return. Value must be between 0 and getYGridCount-1.

getZGridCount

int getZGridCount()
Returns number of values along Z axis


getZGrid

double getZGrid(int index)
Returns the value along Z axis at the specified position.

Parameters:
index - index of value to return. Value must be between 0 and getZGridCount-1.