Files
core/HwpFile/HwpDoc/Chart/XYZ.cpp
Kirill Polyakov ebed729f13 Refactoring
2026-01-19 13:04:45 +03:00

16 lines
288 B
C++

#include "XYZ.h"
namespace HWP { namespace CHART
{
CXYZ::CXYZ()
{
}
bool CXYZ::Read(CChartStream& oStream)
{
return oStream.ReadBoolean(m_bAutomatic) && oStream.ReadDouble(m_dxIntersection) &&
oStream.ReadDouble(m_dyIntersection) && oStream.ReadDouble(m_dzIntersection);
}
}}