PeriDyno 1.2.1
Loading...
Searching...
No Matches
MarchingCubesHelper.h File Reference
Include dependency graph for MarchingCubesHelper.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  dyno::MarchingCubesHelper< TDataType >
 

Namespaces

namespace  dyno
 This is an implementation of AdditiveCCD based on peridyno.
 

Macros

#define Inside(a, iso, h)
 
#define Outside(a, iso, h)
 
#define OnSurface(a, iso, h)
 

Macro Definition Documentation

◆ Inside

#define Inside ( a,
iso,
h )
Value:
((a) < float(iso - 0.001953125 * h ))

Definition at line 28 of file MarchingCubesHelper.h.

◆ OnSurface

#define OnSurface ( a,
iso,
h )
Value:
((a) <= float( iso + 0.001953125 * h ) && (a) >= float(iso - 0.001953125 * h ))

Definition at line 34 of file MarchingCubesHelper.h.

◆ Outside

#define Outside ( a,
iso,
h )
Value:
((a) > float( iso + 0.001953125 * h ))

Definition at line 31 of file MarchingCubesHelper.h.