Points: apply clang-formatting
This commit is contained in:
@@ -32,13 +32,15 @@
|
||||
#include "Structured.h"
|
||||
|
||||
|
||||
namespace Points {
|
||||
extern PyObject* initModule();
|
||||
namespace Points
|
||||
{
|
||||
extern PyObject* initModule();
|
||||
}
|
||||
|
||||
/* Python entry */
|
||||
PyMOD_INIT_FUNC(Points)
|
||||
{
|
||||
// clang-format off
|
||||
PyObject* pointsModule = Points::initModule();
|
||||
Base::Console().Log("Loading Points module... done\n");
|
||||
|
||||
@@ -46,17 +48,18 @@ PyMOD_INIT_FUNC(Points)
|
||||
Base::Interpreter().addType(&Points::PointsPy::Type, pointsModule, "Points");
|
||||
|
||||
// add properties
|
||||
Points::PropertyGreyValue ::init();
|
||||
Points::PropertyGreyValueList ::init();
|
||||
Points::PropertyNormalList ::init();
|
||||
Points::PropertyCurvatureList ::init();
|
||||
Points::PropertyPointKernel ::init();
|
||||
Points::PropertyGreyValue ::init();
|
||||
Points::PropertyGreyValueList ::init();
|
||||
Points::PropertyNormalList ::init();
|
||||
Points::PropertyCurvatureList ::init();
|
||||
Points::PropertyPointKernel ::init();
|
||||
|
||||
// add data types
|
||||
Points::Feature ::init();
|
||||
Points::Structured ::init();
|
||||
Points::FeatureCustom ::init();
|
||||
Points::StructuredCustom ::init();
|
||||
Points::FeaturePython ::init();
|
||||
Points::Feature ::init();
|
||||
Points::Structured ::init();
|
||||
Points::FeatureCustom ::init();
|
||||
Points::StructuredCustom ::init();
|
||||
Points::FeaturePython ::init();
|
||||
PyMOD_Return(pointsModule);
|
||||
// clang-format on
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user