*** empty log message ***
[lilypond.git] / lily / spring-smob.cc
blob591953b0359cf6c175a22c400490f1b8e84cad92
1 /*
2 spring.cc -- implement Spring
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "spring.hh"
11 #include "warn.hh"
12 #include "ly-smobs.icc"
14 Spring_smob::Spring_smob ()
16 distance_ =0.;
17 strength_ =1.0;
18 expand_only_b_ = false;
19 other_ = 0;
23 IMPLEMENT_SIMPLE_SMOBS (Spring_smob);
25 SCM
26 Spring_smob::mark_smob (SCM) { return SCM_UNSPECIFIED; }
28 int
29 Spring_smob::print_smob (SCM s, SCM p, scm_print_state *)
31 Spring_smob *ss = unsmob_spring (s);
32 scm_puts (_f ("#<spring smob d= %f>", ss->distance_).to_str0 (), p);
33 return 1;
36 SCM
37 Spring_smob::equal_p (SCM a , SCM b)
39 return a==b? SCM_BOOL_T : SCM_BOOL_F;