mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:07:28 +08:00
15 lines
218 B
C++
15 lines
218 B
C++
#include "Coor3.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CCoor3::CCoor3()
|
|
{
|
|
|
|
}
|
|
|
|
bool CCoor3::Read(CChartStream& oStream)
|
|
{
|
|
return oStream.ReadSingle(m_snX) && oStream.ReadSingle(m_snY) && oStream.ReadSingle(m_snZ);
|
|
}
|
|
}}
|