dispmap/svpoint.cpp
Andrey Tkachenko 826af318d3 point cloud
2014-07-25 18:44:53 +04:00

17 lines
167 B
C++

#include "svpoint.h"
SvPoint::SvPoint()
{
}
SvPoint::SvPoint(SvPoint &point)
{
}
void SvPoint::addCurve(SvCurve *curve)
{
m_curves[m_curveCount++] = curve;
}