IPointCloudVisualizer.cs 875 B

123456789101112131415161718
  1. /****************************************************************************
  2. * Copyright 2019 Nreal Techonology Limited. All rights reserved.
  3. *
  4. * This file is part of NRSDK.
  5. *
  6. * https://www.nreal.ai/
  7. *
  8. *****************************************************************************/
  9. namespace NRKernal.Experimental.Persistence
  10. {
  11. public interface IPointCloudDrawer
  12. {
  13. void Update(PointCloudPoint point);
  14. void Draw();
  15. }
  16. }