1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#pragma once

#include <vtkDataArray.h>
#include <vtkSmartPointer.h>

#include "../Math/Vector.h"
#include "DomainInfo.h"
#include "GridTypes.h"

namespace VofFlow {
    vec3 gradient(const DomainInfo& domain, const gridCoords_t& g_coords, const vtkSmartPointer<vtkDataArray>& data);
}