split vertex vol
split vertex(n1,n2,...)vol(id)
Introduced a fracture along the facets of the volume id containing the verticesnumbers
n1, n2, .... These facets have their vertex numbers changed.
To separate the slot can for example use this function:
modif(f,n,dx,dy)
{
w=fac(f)vol 1;s=w[n-1];
p=poi(s)vol 1;poi(s)vol 1=p+(dx,dy,0);
}
modif(7,1,-d,-d);
Moves to the left and above vertex 1 of facet 7
modif(7,2,d,-d);
Moves to the right and above vertex 2 of facet 7
modif(7,3,d,d);
Moves to the left and down the vertex 3 of facet 7