Click or drag to resize

GM_CreateEmptyLidarQuery

Creates an empty Lidar query result that you can add individual Lidar points to or add entire queries, then perform operations on, like iterating through the points, modifying the points, etc. You can use the GM_AddRemovePointToLidarQuery or GM_AddLidarQueryToQuery to add/remove points in the query. You must call GM_FreeLidarQuery to free the memory used by the query once done with it.

Syntax
GM_DLL_EXPORTED GM_Error_t32 __stdcall GM_CreateEmptyLidarQuery
(
GM_LidarQueryHandle_t*          aLidarQuery // OUT: Created Lidar query to be used in future calls
)