Skip to content
Snippets Groups Projects
Commit ab383e0c authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

pp

parent 14bd21cd
Branches
Tags
No related merge requests found
// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
#include "meshGFaceBoundaryLayers.h"
#include "GModel.h"
#include "GRegion.h"
......
// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
#include "PView.h"
#include "PViewData.h"
#include "PViewAsSimpleFunction.h"
double PViewEvaluator::operator() (const double x, const double y, const double z) const{
double PViewEvaluator::operator() (const double x, const double y, const double z) const
{
PViewData * pvd = _pv->getData();
double value;
bool found = pvd->searchScalar(x, y, z, &value, _step);
......
// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
#ifndef _PVIEW_AS_SIMPLEFUNCTION_H
#define _PVIEW_AS_SIMPLEFUNCTION_H
#include "simpleFunction.h"
class PView;
class PViewEvaluator : public simpleFunction<double> {
PView *_pv;
int _step;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment