brepjs API Reference
    Preparing search index...

    Interface BooleanDiagnostics

    Diagnostic information from a boolean operation.

    interface BooleanDiagnostics {
        hasErrors: boolean;
        hasWarnings: boolean;
        messages: readonly string[];
    }
    Index

    Properties

    hasErrors: boolean

    Whether the OCCT algorithm reported internal errors.

    hasWarnings: boolean

    Whether the OCCT algorithm reported warnings.

    messages: readonly string[]

    Human-readable messages. Currently always empty — OCCT's message reporting via Standard_OStream is not accessible in WASM builds. Reserved for future use.