An alpha version notation editor for X in Scheme. Source available on
request.
-=item Rosegarden, http://www.math.bath.ac.uk/~masjpf/rose.html
+=item Rosegarden, http://www.bath.ac.uk/~masjpf/rose.html
-A Notation editor/Sequencer for X (win95 port underway). Outputs musictex.
+A Notation editor/Sequencer for X (windows95 port underway). Outputs musictex.
=item Common Notation,
http://www-ccrma.stanford.edu/CCRMA/Software/cmn/cmn.html
Notation editor for W95 and Mac
-=item Sibelius, http://www.acorn.co.uk/developers/sibelius
+=item Sibelius, http://www.acorn.co.uk/developers/sibelius/Home
Notation/engraving on Acorn machines.
Real
Paper_def::duration_to_dist(Moment d)
{
- if (!d)
- return 0;
-
- return get_var("unitspace") * pow(get_var("geometric"), log_2(d));
+ Real dur_f = (d) ?pow(get_var("geometric"), log_2(d)) : 0;
+ return get_var("basicspace") + get_var("unitspace") * dur_f;
}