Files
pymol-open-source/layer0/ContourSurf.h
Thomas Holder b85270bc30 PYMOL-3528 isosurface with VTKm
New setting: isosurface_algorithm
2021-04-28 05:17:34 -04:00

24 lines
445 B
C++

/**
* @file
* Isosurface with VTKm
*
* (c) 2020 Schrodinger, Inc.
*/
#pragma once
#include "PyMOLEnums.h"
#include "vla.h"
struct PyMOLGlobals;
struct Isofield;
class CarveHelper;
int ContourSurfVolume(PyMOLGlobals* G, Isofield* field, float level,
pymol::vla<int>& num, //
pymol::vla<float>& vert, //
const int* range, //
cIsosurfaceMode mode, //
const CarveHelper*, //
cIsosurfaceSide side);