(make-mesh 'restrict-edge)
Take an edge (or several edges) from a mesh to make a new mesh. This function is helpful to extract a sub mesh from an original mesh. The result is an edge (or a list of edges).
Description Syntax
(make-mesh 'restrict-edge mesh edges)
Parameters
mesh The original mesh from which a sub mesh is extracted. edge(s) The edges to be extrated given by a vector of number of nodes
Example
(define sub-mesh (make-mesh 'restricted-edge (vector 1 2 3 4 1)))
See also
For details see make-mesh 'restricted-point