Nodebundle for playing with nodes

 From:  Michael Gibson
7777.1556 In reply to 7777.1555 
Hi Brian, so looking through edges of a brep to find one with a particular name would look something like this:

code:
var edges = brep.getEdges();

for ( var i = 0; i < edges.length; ++i )
{
    var edge = edges.item(i);
    if ( edge.name == 'thename' )
    {
        ...
    }
}


- Michael