blob: 4cbc2ea0c20d20044b426a5efd1b998ceabe2e6f (
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
34
35
36
37
38
39
40
41
42
43
44
|
/*
beam.hh -- part of LilyPond
(c) 1996 Han-Wen Nienhuys
*/
#ifndef BEAM_HH
#define BEAM_HH
#include "proto.hh"
#include "spanner.hh"
#include "list.hh"
/// a beam connects multiple stems
struct Beam: public Spanner {
List<Stem*> stems;
Real slope;
Real left_pos;
/// -1 below heads, +1 above heads.
int dir;
/****************/
virtual Interval width()const;
Spanner *broken_at(const PCol *, const PCol *) const;
Beam();
void add(Stem*);
void process();
void calculate();
void set_default_dir();
void preprocess();
Interval height()const;
void print() const;
void set_stemlens();
private:
void solve_slope();
void brew_molecule();
};
/** Beam adjusts the stems its owns to make sure that they reach the
beam and that point in the correct direction */
#endif // BEAM_HH
|