Skip to content
Snippets Groups Projects
Commit 8b0dbacf authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

Recombine val

parent fe2fcf26
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
...@@ -3895,6 +3895,10 @@ ExtrudeParameter : ...@@ -3895,6 +3895,10 @@ ExtrudeParameter :
{ {
extr.mesh.Recombine = true; extr.mesh.Recombine = true;
} }
| tRecombine FExpr tEND
{
extr.mesh.Recombine = $2 ? true : false;
}
| tQuadTriSngl tEND | tQuadTriSngl tEND
{ {
yymsg(0, "Keyword 'QuadTriSngl' deprecated. Use 'QuadTriNoNewVerts' instead."); yymsg(0, "Keyword 'QuadTriSngl' deprecated. Use 'QuadTriNoNewVerts' instead.");
......
...@@ -2768,7 +2768,7 @@ extruded and has the following syntax: ...@@ -2768,7 +2768,7 @@ extruded and has the following syntax:
@group @group
Layers @{ @var{expression} @} | Layers @{ @var{expression} @} |
Layers @{ @{ @var{expression-list} @}, @{ @var{expression-list} @} @} | Layers @{ @{ @var{expression-list} @}, @{ @var{expression-list} @} @} |
Recombine; @dots{} Recombine < @var{expression} >; @dots{}
QuadTriNoNewVerts <RecombLaterals>; | QuadTriNoNewVerts <RecombLaterals>; |
QuadTriAddVerts <RecombLaterals>; ... QuadTriAddVerts <RecombLaterals>; ...
@end group @end group
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment