PK_CURVE_find_discontinuity_o_t   
struct PK_CURVE_find_discontinuity_o_s
    {
    int             o_t_version;   --- option structure version
    PK_continuity_t level;         --- indicates level and type of query
                                   --- (PK_continuity_c3_c)
    PK_LOGICAL_t    have_interval; --- whether to query a curve portion
                                   --- (PK_LOGICAL_false)
    PK_INTERVAL_t   interval;      --- curve portion to query
    };
typedef struct PK_CURVE_find_discontinuity_o_s
   PK_CURVE_find_discontinuity_o_t;


Holds optional data for the discontinuity query

Used in:

PK_CURVE_find_discontinuity


The option structure defines options applicable to finding discontinuities.
It currently includes the following fields:

 'level'         Specifies the type of check to be either analytic or geometric
                 and the maximum order to search up to. A value of
                 PK_continuity_g3_c is not allowed for this function.

 'have_interval' Specifies if a sub-domain of the interval of definition of
                 the curve to query is to be used. If set to PK_LOGICAL_false,
                 then entire domain of the curve is used.

 'interval'      Specifies the parametric interval of a sub-domain of the curve
                 to query and is used if the logical above is set to true.

Generated on: Fri, 04 Oct 2024 12:17:45 GMT