struct CvGraphEdge

#include <types_c.h>

struct CvGraphEdge
{
    // fields

    int flags;
    struct CvGraphEdge* next[2];
    struct CvGraphVtx* vtx[2];
    float weight;
};