Loading...
Searching...
No Matches
LevelSetSolver3.hpp
Go to the documentation of this file.
1// This code is based on Jet framework.
2// Copyright (c) 2018 Doyub Kim
3// CubbyFlow is voxel-based fluid simulation engine for computer games.
4// Copyright (c) 2020 CubbyFlow Team
5// Core Part: Chris Ohk, Junwoo Hwang, Jihong Sin, Seungwoo Yoo
6// AI Part: Dongheon Cho, Minseo Kim
7// We are making my contributions/submissions to this project solely in our
8// personal capacity and are not conveying any rights to any intellectual
9// property of any third parties.
10
11#ifndef CUBBYFLOW_LEVEL_SET_SOLVER3_HPP
12#define CUBBYFLOW_LEVEL_SET_SOLVER3_HPP
13
17
18#include <memory>
19
20namespace CubbyFlow
21{
91
94} // namespace CubbyFlow
95
96#endif
Abstract base class for N-D collocated vector grid structure.
Definition CollocatedVectorGrid.hpp:23
N-D face-centered (a.k.a MAC or staggered) grid.
Definition FaceCenteredGrid.hpp:32
Abstract base class for 3-D level set solver.
Definition LevelSetSolver3.hpp:24
virtual void Extrapolate(const ScalarGrid3 &input, const ScalarField3 &sdf, double maxDistance, ScalarGrid3 *output)=0
LevelSetSolver3(LevelSetSolver3 &&) noexcept=delete
Deleted move constructor.
LevelSetSolver3()=default
Default constructor.
virtual void Reinitialize(const ScalarGrid3 &inputSDF, double maxDistance, ScalarGrid3 *outputSDF)=0
LevelSetSolver3(const LevelSetSolver3 &)=delete
Deleted copy constructor.
Definition Matrix.hpp:30
Abstract base class for N-D scalar field.
Definition ScalarField.hpp:25
Abstract base class for N-D scalar grid structure.
Definition ScalarGrid.hpp:25
Definition pybind11Utils.hpp:21
std::shared_ptr< LevelSetSolver3 > LevelSetSolver3Ptr
Shared pointer type for the LevelSetSolver3.
Definition LevelSetSolver3.hpp:93