34 lines
917 B
C
34 lines
917 B
C
/*
|
|
*
|
|
* PointOrdering.h
|
|
*
|
|
* Written by Cédric Moonen (cedric_moonen@hotmail.com)
|
|
*
|
|
*
|
|
*
|
|
* This code may be used for any non-commercial and commercial purposes in a compiled form.
|
|
* The code may be redistributed as long as it remains unmodified and providing that the
|
|
* author name and this disclaimer remain intact. The sources can be modified WITH the author
|
|
* consent only.
|
|
*
|
|
* This code is provided without any garanties. I cannot be held responsible for the damage or
|
|
* the loss of time it causes. Use it at your own risks
|
|
*
|
|
* An e-mail to notify me that you are using this code is appreciated also.
|
|
*
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
//! Enumeration listing the types of ordering.
|
|
enum PointsOrdering
|
|
{
|
|
//! The points are not ordered
|
|
poNoOrdering,
|
|
//! The points are ordered by their X values
|
|
poXOrdering,
|
|
//! The points are ordered by their Y values
|
|
poYOrdering
|
|
};
|