Jet  v1.3.3
zhu_bridson_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_ZHU_BRIDSON_POINTS_TO_IMPLICIT2_H_
8 #define INCLUDE_JET_ZHU_BRIDSON_POINTS_TO_IMPLICIT2_H_
9 
11 
12 namespace jet {
13 
21  public:
23  ZhuBridsonPointsToImplicit2(double kernelRadius = 1.0,
24  double cutOffThreshold = 0.25,
25  bool isOutputSdf = true);
26 
29  ScalarGrid2* output) const override;
30 
31  private:
32  double _kernelRadius = 1.0;
33  double _cutOffThreshold = 0.25;
34  bool _isOutputSdf = true;
35 };
36 
38 typedef std::shared_ptr<ZhuBridsonPointsToImplicit2> ZhuBridsonPointsToImplicit2Ptr;
39 
40 } // namespace jet
41 
42 #endif // INCLUDE_JET_ZHU_BRIDSON_POINTS_TO_IMPLICIT2_H_
jet::ZhuBridsonPointsToImplicit2Ptr
std::shared_ptr< ZhuBridsonPointsToImplicit2 > ZhuBridsonPointsToImplicit2Ptr
Shared pointer type for ZhuBridsonPointsToImplicit2 class.
Definition: zhu_bridson_points_to_implicit2.h:38
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::ZhuBridsonPointsToImplicit2::convert
void convert(const ConstArrayAccessor1< Vector2D > &points, ScalarGrid2 *output) const override
Converts the given points to implicit surface scalar field.
jet::ZhuBridsonPointsToImplicit2::ZhuBridsonPointsToImplicit2
ZhuBridsonPointsToImplicit2(double kernelRadius=1.0, double cutOffThreshold=0.25, bool isOutputSdf=true)
Constructs the converter with given kernel radius and cut-off threshold.
jet::ZhuBridsonPointsToImplicit2
2-D points-to-implicit converter based on Zhu and Bridson's method.
Definition: zhu_bridson_points_to_implicit2.h:20