figureone
    Preparing search index...

    Interface EQN_AngleBracketSymbol

    Angle bracket equation symbol used in EQN_Bracket, EQN_Bar, EQN_Matrix, and EQN_Comment.

                         width
                      |<------->|
                      |         |
              --------|----- 0000
              A       |     0000
              |       |    0000
              |       |   0000
              |       |  0000
              |         0000
       height |        0000
              |        0000
              |         0000
              |          0000
              |           0000
              |            0000
              |             0000
              V_____________ 0000
    
    
    • symbol angleBracket
    • side left | right | top | bottom — how to orient the angle bracket ('left')
    • lineWidth number — (depends on height)
    • width number — force width bracket (normally depends on height)
    • draw dynamic | static'static' updates vertices on resize, 'static' only changes scale transform (dynamic)
    • staticHeight number | first — used when draw=static. number sets height of static symbol - 'first' calculates and sets height based on first use ('first')
    // Define in element
    figure.add({
    make: 'equation',
    elements: {
    lb: { symbol: 'angleBracket', side: 'left' },
    rb: { symbol: 'angleBracket', side: 'right' },
    },
    forms: {
    form1: { brac: ['lb', 'a', 'rb'] },
    },
    });
    // Define inline
    figure.add({
    make: 'equation',
    forms: {
    form1: {
    brac: [
    { lb_angleBracket: { side: 'left' } },
    'a',
    { rb_angleBracket: { side: 'right' } },
    ],
    },
    },
    });
    @interface