new boundary syntax

This commit is contained in:
mattijs
2009-01-15 18:25:11 +00:00
parent 0bbc8fd2c4
commit 9c9c43f23a

View File

@ -37,25 +37,59 @@ edges
( (
); );
patches //patches
//(
// wall movingWall
// (
// (3 7 6 2)
// )
// wall fixedWalls
// (
// (0 4 7 3)
// (2 6 5 1)
// (1 5 4 0)
// )
// empty frontAndBack
// (
// (0 3 2 1)
// (4 5 6 7)
// )
//);
boundary
( (
wall movingWall movingWall
( {
(3 7 6 2) type wall;
) faces
wall fixedWalls (
( (3 7 6 2)
(0 4 7 3) );
(2 6 5 1) }
(1 5 4 0)
) fixedWalls
empty frontAndBack {
( type wall;
(0 3 2 1) faces
(4 5 6 7) (
) (0 4 7 3)
(2 6 5 1)
(1 5 4 0)
);
}
frontAndBack
{
type empty;
faces
(
(0 3 2 1)
(4 5 6 7)
);
}
); );
mergePatchPairs mergePatchPairs
( (
); );