rmt isosurface correction

This commit is contained in:
mattijs
2008-11-12 16:05:22 +00:00
parent 0fe10dcf33
commit 4d2284c99d
14 changed files with 4206 additions and 1016 deletions

View File

@ -155,21 +155,25 @@ surfaces
// Optional: whether to leave as faces (=default) or triangulate
}
constantIso
{
name isoSurface;
isoField rho;
isoValue 0.5;
interpolate false
}
interpolatedIso
{
name isoSurface;
// Iso surface for interpolated values only
type isoSurface;
isoField rho;
isoValue 0.5;
interpolate true;
//regularise false; //optional: do not simplify
}
constantIso
{
// Iso surface for constant values. Guarantees triangles to not
// cross cells.
type isoSurfaceCell;
isoField rho;
isoValue 0.5;
interpolate false;
//regularise false; //optional: do not simplify
}
);