Commit 8946b4d4 authored by Corey Ernst's avatar Corey Ernst
Browse files

Allowing normalized inradius to be computed on tet14s and 15s. It just...

Allowing normalized inradius to be computed on tet14s and 15s.  It just ignores mid face and body nodes.
parent d7e9cecd
Showing with 1 addition and 1 deletion
+1 -1
......@@ -1573,7 +1573,7 @@ double tet_normalized_inradius(int num_nodes, double coordinates[][3] )
{
if(num_nodes==4)
return tet4_normalized_inradius(coordinates);
else if(num_nodes==10)
else if(num_nodes>=10)
return tet10_normalized_inradius(coordinates);
return 0.0;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment