PK_EDGE_find_deviation_t   

struct PK_EDGE_find_deviation_s
    {
    int                n_distances;     --- number of distances returned
    double            *distances;       --- distances
    PK_VECTOR_t       *edge1_vecs;      --- points on 'edge1'
    PK_VECTOR_t       *edge2_vecs;      --- corresponding points on'edge2'
    PK_INTERVAL_t      interval1;       --- interval on 'edge1'
    PK_INTERVAL_t      interval2;       --- interval on 'edge2'
    };
typedef struct PK_EDGE_find_deviation_s PK_EDGE_find_deviation_t;


This structure contains the distance samples of an overlap region
as returned PK_EDGE_find_deviation_2.

Used in:

PK_EDGE_find_deviation_r_t


Description of fields:

'n_distances'       The number of samples returned for this region.

'distances'         Array of distances between sample points.

'edge1_vecs'        Sample points on the first edge.

'edge2_vecs'        Corresponding sample points on the second edge.

'interval1'         The parameter interval for this region on the first edge.

'interval2'         Corresponding interval on the second edge.