]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/stencil.hh
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / lily / include / stencil.hh
index 3349cbdd352c7876f61bd9b9ebd15b4b02c45759..b80bcc1c3d77a281212a9701fe4ca66c926acb84 100644 (file)
@@ -3,12 +3,13 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 #ifndef STENCIL_HH
 #define STENCIL_HH
 
 #include <cstdlib>             // size_t
+using namespace std;
 
 #include "lily-proto.hh"
 #include "box.hh"
@@ -54,7 +55,7 @@ class Stencil
   Box dim_;
   SCM expr_;
 
-  DECLARE_SIMPLE_SMOBS (Stencil,);
+  DECLARE_SIMPLE_SMOBS (Stencil);
 public:
   Stencil (Box, SCM s);
   Stencil ();
@@ -72,6 +73,7 @@ public:
                    Real minimum);
   void add_stencil (Stencil const &m);
   void translate (Offset);
+  void rotate (Real, Offset);
   void align_to (Axis a, Real x);
   void translate_axis (Real, Axis);
 
@@ -93,4 +95,6 @@ void register_stencil_head (SCM symbol);
 bool is_stencil_head (SCM symbol);
 SCM all_stencil_heads ();
 
+Stencil points_to_line_stencil (vector<Offset> points);
+
 #endif /* STENCIL_HH */