A line symbol to be used in EQN_Annotate and EQN_Comment as an EQN_LineGlyph to draw a line between the content and an annotation.
The line can be solid or dashed, and have arrows on either or both ends.
// Define in elementfigure.add({ make: 'equation', elements: { l: { symbol: 'line', arrow: 'barb', width: 0.005 }, }, forms: { form1: { topComment: ['a', 'b', 'l', 0.2, 0.2] }, },}); Copy
// Define in elementfigure.add({ make: 'equation', elements: { l: { symbol: 'line', arrow: 'barb', width: 0.005 }, }, forms: { form1: { topComment: ['a', 'b', 'l', 0.2, 0.2] }, },});
// Dashed linefigure.add({ make: 'equation', elements: { l: { symbol: 'line', dash: [0.01, 0.01], width: 0.005 }, }, forms: { form1: { topComment: ['a', 'b', 'l', 0.2, 0.2] }, },}); Copy
// Dashed linefigure.add({ make: 'equation', elements: { l: { symbol: 'line', dash: [0.01, 0.01], width: 0.005 }, }, forms: { form1: { topComment: ['a', 'b', 'l', 0.2, 0.2] }, },});
// Define inline simple one usefigure.add({ make: 'equation', forms: { form1: { topComment: ['a', 'b', 'line', 0.2, 0.2] }, },}); Copy
// Define inline simple one usefigure.add({ make: 'equation', forms: { form1: { topComment: ['a', 'b', 'line', 0.2, 0.2] }, },});
// Define inline with reuseconst eqn = figure.add({ make: 'equation', forms: { form1: { topComment: ['a', 'b', 'l1_line', 0.2, 0.2] }, form2: { topComment: ['c', 'd', 'l1', 0.2, 0.2] }, },});eqn.animations.new() .goToForm({ delay: 1, target: 'form2', animate: 'move' }) .start(); Copy
// Define inline with reuseconst eqn = figure.add({ make: 'equation', forms: { form1: { topComment: ['a', 'b', 'l1_line', 0.2, 0.2] }, form2: { topComment: ['c', 'd', 'l1', 0.2, 0.2] }, },});eqn.animations.new() .goToForm({ delay: 1, target: 'form2', animate: 'move' }) .start();
// Define inline with customizationfigure.add({ make: 'equation', forms: { form1: { topComment: ['a', 'b', { line: { arrow: 'barb' } }, 0.2, 0.2] }, },});@interface Copy
// Define inline with customizationfigure.add({ make: 'equation', forms: { form1: { topComment: ['a', 'b', { line: { arrow: 'barb' } }, 0.2, 0.2] }, },});@interface
A line symbol to be used in EQN_Annotate and EQN_Comment as an EQN_LineGlyph to draw a line between the content and an annotation.
The line can be solid or dashed, and have arrows on either or both ends.
Example
Example
Example
Example
Example