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-0.0.77.jcn1
[lilypond.git]
/
src
/
boxes.cc
blob
f83f7659e929eca8fe24a4771caf09c9d2020c7a
1
#include
"boxes.hh"
2
#include
"const.hh"
3
#include
"varray.hh"
4
5
6
Box
::
Box
()
7
{
8
}
9
10
Box
::
Box
(
Interval ix
,
Interval iy
)
11
{
12
x
=
ix
;
13
y
=
iy
;
14
}
15