/[gzz]/gzz/gfx/liblines/Lines.cxx
ViewVC logotype

Diff of /gzz/gfx/liblines/Lines.cxx

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.16 by mudyc, Wed Dec 18 16:16:51 2002 UTC revision 1.17 by mudyc, Mon Jan 20 08:28:17 2003 UTC
# Line 166  namespace Lines { Line 166  namespace Lines {
166      }      }
167    
168    
169      ContinuousLine::ContinuousLine(int textId, string corner_behaviour, float linewidth) {}    /* -------------------------------------------------------
170      ContinuousLine::~ContinuousLine() {}     *
171       * Continuous Line
172       * ===============  
173       */
174    
175        ContinuousLine::ContinuousLine(int textId,
176                                       string corner_behaviour,
177                                       float linewidth): drawNotDone(true)
178        {
179          if (corner_behaviour == "foo"){}
180    
181      void ContinuousLine::add(float * point) {  
182        }
183    
184        ContinuousLine::~ContinuousLine() {
185          if (drawNotDone) draw();
186      }      }
187    
188      void ContinuousLine::makeChain() {}      void ContinuousLine::add(float x, float y, float z) {
189          cout << "foo..\n";
190        }
191    
192      void ContinuousLine::draw() {}      void ContinuousLine::makeChain() {
193          // not implemented
194        }
195    
196        void ContinuousLine::draw() {
197          drawNotDone = false;
198        }
199    
200    
201    

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26