figureone
    Preparing search index...

    Box equation symbol used in EQN_Box and as a EQN_EncompassGlyph.

                                             width
                    |<--------------------------------------------------->|
                    |                                                     |
                    |                                                     |
    
            ------- 0000000000000000000000000000000000000000000000000000000
            A       0000000000000000000000000000000000000000000000000000000
            |       0000                                               0000
            |       0000                                               0000
            |       0000                                               0000
     height |       0000                                               0000
            |       0000                                               0000
            |       0000                                               0000
            |       0000                                               0000
            |       0000                                               0000
            |       0000000000000000000000000000000000000000000000000000000
            V______ 0000000000000000000000000000000000000000000000000000000
    
    
    // Define in element
    figure.add({
    make: 'equation',
    elements: {
    b: { symbol: 'box', lineWidth: 0.008 },
    },
    forms: {
    form1: { box: ['a', 'b', true, 0.1] },
    },
    });
    // Define inline simple one use
    figure.add({
    make: 'equation',
    forms: {
    form1: { box: ['a', 'box', true, 0.1] },
    },
    });
    // Define inline with reuse
    const eqn = figure.add({
    make: 'equation',
    forms: {
    form1: { box: ['a', 'b_box', false, 0.1] },
    form2: { box: ['a', 'b', false, 0.2] },
    },
    });
    eqn.animations.new()
    .goToForm({ delay: 1, target: 'form2', animate: 'move' })
    .start();
    // Define inline with customization
    figure.add({
    make: 'equation',
    forms: {
    form1: { box: ['a', { box: { lineWidth: 0.004 } }, true, 0.1] },
    },
    });
    @interface