2023-11-22 12:56:31 +01:00
|
|
|
// Example of a plugin action
|
|
|
|
|
|
2023-11-26 22:43:42 +01:00
|
|
|
#include "ccPointCloud.h"
|
|
|
|
|
|
2023-11-22 12:56:31 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
class ccMainAppInterface;
|
|
|
|
|
|
|
|
|
|
namespace G3Point
|
|
|
|
|
{
|
2023-11-26 22:43:42 +01:00
|
|
|
int getBestOctreeLevel();
|
|
|
|
|
void get_neighbors(unsigned index);
|
|
|
|
|
bool query_neighbors(ccPointCloud* cloud, ccMainAppInterface* appInterface, bool useParallelStrategy=true);
|
2023-11-22 12:56:31 +01:00
|
|
|
void performActionA( ccMainAppInterface *appInterface );
|
|
|
|
|
}
|