~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to agg/include/agg_conv_bspline.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
//
24
24
{
25
25
 
26
26
    //---------------------------------------------------------conv_bspline
27
 
    template<class VertexSource> 
 
27
    template<class VertexSource>
28
28
    struct conv_bspline : public conv_adaptor_vcgen<VertexSource, vcgen_bspline>
29
29
    {
30
30
        typedef conv_adaptor_vcgen<VertexSource, vcgen_bspline> base_type;
31
31
 
32
 
        conv_bspline(VertexSource& vs) : 
 
32
        conv_bspline(VertexSource& vs) :
33
33
            conv_adaptor_vcgen<VertexSource, vcgen_bspline>(vs) {}
34
34
 
35
35
        void   interpolation_step(double v) { base_type::generator().interpolation_step(v); }
37
37
 
38
38
    private:
39
39
        conv_bspline(const conv_bspline<VertexSource>&);
40
 
        const conv_bspline<VertexSource>& 
 
40
        const conv_bspline<VertexSource>&
41
41
            operator = (const conv_bspline<VertexSource>&);
42
42
    };
43
43