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