123456789101112131415161718 |
- /****************************************************************************
- * Copyright 2019 Nreal Techonology Limited. All rights reserved.
- *
- * This file is part of NRSDK.
- *
- * https://www.nreal.ai/
- *
- *****************************************************************************/
- namespace NRKernal.Experimental.Persistence
- {
- public interface IPointCloudDrawer
- {
- void Update(PointCloudPoint point);
- void Draw();
- }
- }
|