Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Q: what to do with values on a huge grid coverages? How to pass them using GetValues()? Should we pass double[] or GridCoverage there?
  • Cosmetic issue:

instead of:

Code Block

	public interface IElementSet
	{
	      double GetXCoordinate(int elementIndex, int vertexIndex);
	      double GetYCoordinate(int elementIndex, int vertexIndex);
	      double GetZCoordinate(int elementIndex, int vertexIndex);
	}

write:

Code Block

	public interface IElementSet
	{
	      ICoordinate GetVertexCoordinate(int elementIndex, int vertexIndex);
	}

where

Code Block

  public interface ICoordinate
  {
        double X { get; }
        double Y { get; }
        double Z { get; }
  }