blob: be30c04659c9ca95206dff0f7ed07eed91613150 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "spanner.hh"
#include "line.hh"
#include "symbol.hh"
#include "molecule.hh"
#include "pcol.hh"
String
Spanner::TeXstring() const
{
assert(right->line);
Real w = left->hpos - right->hpos;
return strets->eval(w).tex;
}
// todo.
Spanner *
Spanner::broken_at(const PCol *c1, const PCol *c2) const
{
Spanner *sp = new Spanner(*this);
sp->left = c1;
sp->right = c2;
return sp;
}
Spanner::Spanner()
{
pstaff_=0;
strets=0;
left = right = 0;
}
|