2

Is there any operation on vertices to get my function to find edges base on some preperties?

avivb
  • 187
  • 11

1 Answers1

1

Use Graph.triplets:

graph.triplets.filter(e => {your_condition})
Nikita
  • 4,435
  • 3
  • 24
  • 44