/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-20.8
Code/Engine/WindowsMixedReality/SpatialReferenceFrame.h
22 строки
708 B
Ingrater
Format everything using clang-format (#267)
22 июл 2020, 21:23
Не верифицирован
22 июл 2020, 21:23
878ce7e
Код
Авторство
О чём код?
#pragma once #ifdef BUILDSYSTEM_ENABLE_MIXEDREALITY_SUPPORT # include <WindowsMixedReality/Basics.h> /// \brief A frame of reference on windows holographic. /// /// \see ezWindowsSpatialLocationService class EZ_WINDOWSMIXEDREALITY_DLL ezWindowsSpatialReferenceFrame { public: ezWindowsSpatialReferenceFrame(const ComPtr<ABI::Windows::Perception::Spatial::ISpatialStationaryFrameOfReference>& pReferenceFrame); ~ezWindowsSpatialReferenceFrame(); void GetInternalCoordinateSystem(ComPtr<ABI::Windows::Perception::Spatial::ISpatialCoordinateSystem>& outCoordinateSystem) const; private: ComPtr<ABI::Windows::Perception::Spatial::ISpatialStationaryFrameOfReference> m_pReferenceFrame; }; #endif