getBoundaryNodes method

List getBoundaryNodes(
  1. int geomIndex
)

Implementation

List getBoundaryNodes(int geomIndex) {
  List bdyNodes = [];
  for (Iterator i = iterator(); i.moveNext();) {
    Node node = i.current;
    if (node.getLabel()!.getLocation(geomIndex) == Location.BOUNDARY)
      bdyNodes.add(node);
  }
  return bdyNodes;
}