~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to agg/include/agg_conv_close_polygon.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
//
33
33
 
34
34
    private:
35
35
        conv_close_polygon(const conv_close_polygon<VertexSource>&);
36
 
        const conv_close_polygon<VertexSource>& 
 
36
        const conv_close_polygon<VertexSource>&
37
37
            operator = (const conv_close_polygon<VertexSource>&);
38
38
 
39
39
        VertexSource* m_source;
47
47
 
48
48
 
49
49
    //------------------------------------------------------------------------
50
 
    template<class VertexSource> 
 
50
    template<class VertexSource>
51
51
    void conv_close_polygon<VertexSource>::rewind(unsigned path_id)
52
52
    {
53
53
        m_source->rewind(path_id);
56
56
    }
57
57
 
58
58
 
59
 
    
 
59
 
60
60
    //------------------------------------------------------------------------
61
 
    template<class VertexSource> 
 
61
    template<class VertexSource>
62
62
    unsigned conv_close_polygon<VertexSource>::vertex(double* x, double* y)
63
63
    {
64
64
        unsigned cmd = path_cmd_stop;