Skip to content

Commit

Permalink
[SignedDistanceField] fix include, protected and doc
Browse files Browse the repository at this point in the history
  • Loading branch information
MatPont committed Jul 2, 2024
1 parent 5249e8c commit 2cb7f76
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions core/base/signedDistanceField/SignedDistanceField.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
#include <iostream>

// base code includes
#include "DataTypes.h"
#include "Geometry.h"
#include "ImplicitTriangulation.h"
#include "SurfaceGeometrySmoother.h"
#include "VisitedMask.h"
#include <BoundingVolumeHierarchy.h>
#include <DataTypes.h>
#include <Debug.h>
#include <Geometry.h>
#include <ImplicitTriangulation.h>
#include <SurfaceGeometrySmoother.h>
#include <Triangulation.h>
#include <VisitedMask.h>
#include <queue>

namespace ttk {
Expand All @@ -41,6 +41,7 @@ namespace ttk {
return 0;
}

protected:
template <typename triangulationType>
void findOutsideVertices(const SimplexId vertexId,
triangulationType *const boundingTriangulation,
Expand Down Expand Up @@ -108,7 +109,6 @@ namespace ttk {
int *const isInterior,
dataType &out) const;

protected:
unsigned int xResolution_{1}, yResolution_{1}, zResolution_{1};
std::array<double, 3> spacing_{1.0, 1.0, 1.0};
std::array<double, 3> invSpacingSquared_{1.0, 1.0, 1.0};
Expand Down
4 changes: 2 additions & 2 deletions paraview/xmls/SignedDistanceField.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<Entry value="2" text="Fast Marching Band"/>
</EnumerationDomain>
<Documentation>
Method for the signed distance field computation, exact or approximation (fast marching and fast marching band being a even more approximation).
Method for the signed distance field computation, exact or approximation (fast marching and fast marching band, being an even rougher approximation).
</Documentation>
</IntVectorProperty>

Expand Down Expand Up @@ -92,7 +92,7 @@
</PropertyGroup>

<Hints>
<ShowInMenu category="TTK - Scalar Data" />
<ShowInMenu category="TTK - Domain" />
</Hints>
</SourceProxy>
</ProxyGroup>
Expand Down

0 comments on commit 2cb7f76

Please sign in to comment.