Bitbybit Docs
    Preparing search index...

    Interface EdgeDebugInfo

    Introspection of an edge's underlying curve (degree, poles, periodicity, range, length, ...).

    interface EdgeDebugInfo {
        valid: boolean;
        type?: CurveTypeName;
        firstParameter?: number;
        lastParameter?: number;
        closed?: boolean;
        periodic?: boolean;
        period?: number;
        length?: number;
        isLinear?: boolean;
        isCircular?: boolean;
        degree?: number;
        nbPoles?: number;
        nbKnots?: number;
        rational?: boolean;
        start?: Point3;
        end?: Point3;
    }
    Index

    Properties

    valid: boolean
    firstParameter?: number
    lastParameter?: number
    closed?: boolean
    periodic?: boolean
    period?: number
    length?: number
    isLinear?: boolean
    isCircular?: boolean
    degree?: number
    nbPoles?: number
    nbKnots?: number
    rational?: boolean
    start?: Point3
    end?: Point3