Files
qG3Point/include/ActionA.h
T
2023-11-26 22:43:42 +01:00

16 lines
348 B
C++

// Example of a plugin action
#include "ccPointCloud.h"
#pragma once
class ccMainAppInterface;
namespace G3Point
{
int getBestOctreeLevel();
void get_neighbors(unsigned index);
bool query_neighbors(ccPointCloud* cloud, ccMainAppInterface* appInterface, bool useParallelStrategy=true);
void performActionA( ccMainAppInterface *appInterface );
}