repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.5.10
[lilypond.git]
/
lily
/
offset.cc
blob
105e7fb3850869974320fcb09d6f290cee430999
1
/*
2
offset.cc -- implement Offset
3
4
source file of the GNU LilyPond music typesetter
5
6
(c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7
*/
8
9
#include
"string.hh"
10
#include
"offset.hh"
11
12
String
13
Offset
::
str
()
const
14
{
15
String s
;
16
s
=
String
(
"("
) +
coordinate_a_
[
X_AXIS
] +
", "
+
coordinate_a_
[
Y_AXIS
] +
")"
;
17
return
s
;
18
}