dispmap/svpoint.h
Andrey Tkachenko 8bfc0687d8 Point Cloud
2014-07-23 20:51:07 +04:00

35 lines
432 B
C++

#ifndef SVPOINT_H
#define SVPOINT_H
#include "svsimplepoint.h"
#include "svdefs.h"
class SvCurve;
class SvPoint: public SvSimplePoint
{
public:
enum Sides {
TOP,
BOTTOM,
RIGHT,
LEFT
};
enum FlowType {
HORIZONTAL,
VERTICAL,
SLASH,
BACK_SLASH
};
protected:
SvCurve* m_curves;
FlowType m_type;
public:
SvPoint();
};
#endif // SVPOINT_H