q5m.js - Quantum Computing Library - v0.1.1
    Preparing search index...

    Interface ASCIIRenderOptions

    Defines options for rendering a circuit as ASCII art.

    interface ASCIIRenderOptions {
        useUnicode?: boolean;
        showQubitLabels?: boolean;
        showTimeSteps?: boolean;
        minGateWidth?: number;
    }
    Index

    Properties

    useUnicode?: boolean

    If true, uses Unicode box-drawing characters for a cleaner look. Defaults to false.

    showQubitLabels?: boolean

    If true, displays qubit labels (e.g., "q0:"). Defaults to true.

    showTimeSteps?: boolean

    If true, displays time step numbers at the top. Defaults to false.

    minGateWidth?: number

    The minimum width for a gate in characters. Defaults to 3.