Point3DGridType
Description
Describes how a point grid is ordered.
Values of this enumeration:
- Equispaced - Points are unordered but fall on an equispaced grid with little to no error.
- LineByLineX - Points are ordered with respect to the X coordinate
- LineByLineY - Points are ordered with respect to the Y coordinate
namespace Point3DGridType
{
enum Type
{
Equispaced,
LineByLineX,
LineByLineY
};
}
