Skip to content
Snippets Groups Projects
Commit aad4eb29 authored by lampe's avatar lampe
Browse files

Isosurface3D: $b 1 doesn't plot inner boundary sides anymore

[[Imported from SVN: r8003]]
parent 01b7d86a
No related branches found
No related tags found
No related merge requests found
......@@ -20650,7 +20650,8 @@ static INT EW_Isosurface3D (ELEMENT *theElement, DRAWINGOBJ *theDO)
/* plot domain boundary back sides iff */
if (Isosurface3D_DomainBackFaces && OBJT(theElement)==BEOBJ)
for (i = 0; i < SIDES_OF_ELEM(theElement); i++)
if (!INNER_SIDE(theElement,i) && !VIEWABLE(theElement,i)) {
if (!INNER_SIDE(theElement,i) && NBELEM(theElement,i)==NULL &&
!VIEWABLE(theElement,i)) {
DO_2c(theDO) = DO_SHADED_POLYGON; DO_inc(theDO);
DO_2c(theDO) = CORNERS_OF_SIDE(theElement,i); DO_inc(theDO);
DO_2l(theDO) = Isosurface3D_backcolor; DO_inc(theDO);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment