struct MatchingVertex

struct MatchingVertex
{
    //
fields

    size_t seg1;
    size_t seg2;
    bool seg1Point;
    bool seg2Point;

    // construction

    MatchingVertex();

    MatchingVertex(
        size_t s1,
        size_t s2,
        bool s1p,
        bool s2p
        );
};