feat: v0.1.0更新

This commit is contained in:
2026-01-14 18:07:26 +08:00
commit efd8a7cc20
55 changed files with 6200 additions and 0 deletions

17
include/1225pc_viewer.h Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#include <cstddef>
#include <cstdint>
// 初始化显示模块(内部创建线程)
bool pc_viewer_start();
// 停止显示模块
void pc_viewer_stop();
// 推送一帧 XYZ 数据floatxyzxyz...
// 只显示最新一帧,旧数据会被覆盖
void pc_viewer_update(
const float* xyz,
size_t point_count,
uint32_t block_id
);