lilypond-0.0.62
[lilypond.git] / flower / vector.cc
blob5cb2666e79254e2eb10f635f583cb4c0757f8872
1 #include "vector.hh"
2 Vector::Vector(Array<Real> d)
3 : dat(d)
7 Vector::Vector(Vector const &n)
8 : dat(n.dat)
12 Vector
13 Vector::operator-() const
15 Vector v(*this);
16 v*=-1;
17 return v;
20 void
21 Vector::set_unit(int j)
23 fill(0.0);
24 dat[j] = 1.0;