~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to agg/include/agg_conv_concat.h

  • Committer: corsixth.bot at gmail
  • Date: 2014-03-31 23:30:23 UTC
  • Revision ID: svn-v4:c39591fa-788f-11de-a72b-d90af8dea425:trunk:2687
Remove trailing whitespaces in .h, .cpp, .c and .lua files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
// Anti-Grain Geometry - Version 2.4
3
3
// Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
4
4
//
5
 
// Permission to copy, use, modify, sell and distribute this software 
6
 
// is granted provided this copyright notice appears in all copies. 
 
5
// Permission to copy, use, modify, sell and distribute this software
 
6
// is granted provided this copyright notice appears in all copies.
7
7
// This software is provided "as is" without express or implied
8
8
// warranty, and with no claim as to its suitability for any purpose.
9
9
//
21
21
namespace agg
22
22
{
23
23
    //=============================================================conv_concat
24
 
    // Concatenation of two paths. Usually used to combine lines or curves 
 
24
    // Concatenation of two paths. Usually used to combine lines or curves
25
25
    // with markers such as arrowheads
26
26
    template<class VS1, class VS2> class conv_concat
27
27
    {
33
33
 
34
34
 
35
35
        void rewind(unsigned path_id)
36
 
        { 
 
36
        {
37
37
            m_source1->rewind(path_id);
38
38
            m_source2->rewind(0);
39
39
            m_status = 0;
59
59
 
60
60
    private:
61
61
        conv_concat(const conv_concat<VS1, VS2>&);
62
 
        const conv_concat<VS1, VS2>& 
 
62
        const conv_concat<VS1, VS2>&
63
63
            operator = (const conv_concat<VS1, VS2>&);
64
64
 
65
65
        VS1* m_source1;