Jet  v1.3.3
anisotropic_points_to_implicit2.h
Go to the documentation of this file.
1 // Copyright (c) 2018 Doyub Kim
2 //
3 // I am making my contributions/submissions to this project solely in my
4 // personal capacity and am not conveying any rights to any intellectual
5 // property of any third parties.
6 
7 #ifndef INCLUDE_JET_ANISOTROPIC_POINTS_TO_IMPLICIT2_H_
8 #define INCLUDE_JET_ANISOTROPIC_POINTS_TO_IMPLICIT2_H_
9 
11 
12 namespace jet {
13 
27  public:
37  AnisotropicPointsToImplicit2(double kernelRadius = 1.0,
38  double cutOffDensity = 0.5,
39  double positionSmoothingFactor = 0.5,
40  size_t minNumNeighbors = 8,
41  bool isOutputSdf = true);
42 
45  ScalarGrid2* output) const override;
46 
47  private:
48  double _kernelRadius = 1.0;
49  double _cutOffDensity = 0.5;
50  double _positionSmoothingFactor = 0.0;
51  size_t _minNumNeighbors = 8;
52  bool _isOutputSdf = true;
53 };
54 
56 typedef std::shared_ptr<AnisotropicPointsToImplicit2>
58 
59 } // namespace jet
60 
61 #endif // INCLUDE_JET_ANISOTROPIC_POINTS_TO_IMPLICIT2_H_
points_to_implicit2.h
jet::ConstArrayAccessor< T, 1 >
1-D read-only array accessor class.
Definition: array_accessor1.h:184
jet
Definition: advection_solver2.h:18
jet::ScalarGrid2
Abstract base class for 2-D scalar grid structure.
Definition: scalar_grid2.h:21
jet::PointsToImplicit2
Abstract base class for 2-D points-to-implicit converters.
Definition: points_to_implicit2.h:19
jet::AnisotropicPointsToImplicit2::AnisotropicPointsToImplicit2
AnisotropicPointsToImplicit2(double kernelRadius=1.0, double cutOffDensity=0.5, double positionSmoothingFactor=0.5, size_t minNumNeighbors=8, bool isOutputSdf=true)
Constructs the converter with given parameters.
jet::AnisotropicPointsToImplicit2Ptr
std::shared_ptr< AnisotropicPointsToImplicit2 > AnisotropicPointsToImplicit2Ptr
Shared pointer for the AnisotropicPointsToImplicit2 type.
Definition: anisotropic_points_to_implicit2.h:57
jet::AnisotropicPointsToImplicit2::convert
void convert(const ConstArrayAccessor1< Vector2D > &points, ScalarGrid2 *output) const override
Converts the given points to implicit surface scalar field.
jet::AnisotropicPointsToImplicit2
2-D points-to-implicit converter using Anisotropic kernels.
Definition: anisotropic_points_to_implicit2.h:26