File: bounds.cpp

package info (click to toggle)
contextfree 3.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,260 kB
  • sloc: cpp: 37,992; lex: 414; makefile: 123; sh: 43; python: 34
file content (177 lines) | stat: -rw-r--r-- 5,290 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// bounds.cpp
// this file is part of Context Free
// ---------------------
// Copyright (C) 2006-2007 Mark Lentczner - markl@glyphic.com
// Copyright (C) 2006-2013 John Horigan - john@glyphic.com
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
// 
// John Horigan can be contacted at john@glyphic.com or at
// John Horigan, 1209 Villa St., Mountain View, CA 94041-1123, USA
//
// Mark Lentczner can be contacted at markl@glyphic.com or at
// Mark Lentczner, 1209 Villa St., Mountain View, CA 94041-1123, USA
//
//


#include "bounds.h"

#include "agg2/agg_trans_affine.h"
#include "primShape.h"
#include "shape.h"
#include "agg2/agg_basics.h"
#include "pathIterator.h"
#include "ast.h"

// This constructor iterates the transformed path and computes the exact bounds.
// This can be expensive for curved paths.
Bounds::Bounds(const agg::trans_affine& trans, pathIterator& helper, double scale, 
               const AST::CommandInfo& attr)
{
    if (!helper.boundingRect(trans, attr, mMin_X, mMin_Y, mMax_X, mMax_Y, scale))
    {
        invalidate();
    }
}

Bounds
Bounds::interpolate(const Bounds& other, double alpha) const
{
    double beta = 1.0 - alpha;
    
    Bounds r;
    if (!valid() || !other.valid()) return r;
    
    r.mMax_X = beta * mMax_X + alpha * other.mMax_X;
    r.mMin_X = beta * mMin_X + alpha * other.mMin_X;
    r.mMax_Y = beta * mMax_Y + alpha * other.mMax_Y;
    r.mMin_Y = beta * mMin_Y + alpha * other.mMin_Y;
    
    return r;
}

Bounds
Bounds::dilate(double dilation) const
{
    Bounds b;
    agg::point_d cent((mMin_X + mMax_X) * 0.5, (mMin_Y + mMax_Y) * 0.5);
    b.mMin_X = dilation * (mMin_X - cent.x) + cent.x;
    b.mMax_X = dilation * (mMax_X - cent.x) + cent.x;
    b.mMin_Y = dilation * (mMin_Y - cent.y) + cent.y;
    b.mMax_Y = dilation * (mMax_Y - cent.y) + cent.y;
    return b;
}

Bounds
Bounds::slewCenter(const Bounds& other, double alpha) const
{
    Bounds r;
    if (!valid() || !other.valid()) return r;
    
    double offsetX
    = alpha * ((other.mMax_X + other.mMin_X) - (mMax_X + mMin_X)) / 2.0;
    double offsetY
    = alpha * ((other.mMax_Y + other.mMin_Y) - (mMax_Y + mMin_Y)) / 2.0;
    
    double absX = fabs(offsetX);
    double absY = fabs(offsetY);
    
    r.mMax_X = mMax_X + absX + offsetX;
    r.mMin_X = mMin_X - absX + offsetX;
    r.mMax_Y = mMax_Y + absY + offsetY;
    r.mMin_Y = mMin_Y - absY + offsetY;
    
    return r;
}

void
Bounds::gather(const Bounds& other, double weight)
{
    if (!other.valid()) return;
    
    if (!valid()) {
        mMax_X = weight * other.mMax_X;
        mMin_X = weight * other.mMin_X;
        mMax_Y = weight * other.mMax_Y;
        mMin_Y = weight * other.mMin_Y;
        return;
    }
    
    mMax_X += weight * other.mMax_X;
    mMin_X += weight * other.mMin_X;
    mMax_Y += weight * other.mMax_Y;
    mMin_Y += weight * other.mMin_Y;
}

double
Bounds::computeScale(int& width, int& height, double borderX, double borderY,
                     bool modify, agg::trans_affine* trans, bool exact) const
{
    double scale;
    double virtual_width = mMax_X - mMin_X;
    double virtual_height = mMax_Y - mMin_Y;
    double target_width = width - 2.0 * borderX;
    double target_height = height - 2.0 * borderY;
    
    if (!valid()) virtual_width = virtual_height = 1.0;
    
    int newWidth = width;
    int newHeight = height;
    
    if (virtual_width / target_width >
        virtual_height / target_height)
    {
        scale = target_width / virtual_width;
        newHeight = static_cast<int>(std::floor(scale * virtual_height + 2.0 * borderY + 0.5));
        if (!exact)
            newHeight = newHeight + ((newHeight ^ height) & 0x1);
        
        if (modify) {
            height = newHeight;
        }
    }
    else {
        scale = target_height / virtual_height;
        newWidth = static_cast<int>(std::floor(scale * virtual_width + 2.0 * borderX + 0.5));
        if (!exact)
            newWidth = newWidth + ((newWidth ^ width) & 0x1);
        
        if (modify) {
            width = newWidth;
        }
    }
    
    if (trans) {
        double offsetX = scale * (mMax_X + mMin_X) / 2.0 - newWidth / 2.0;
        double offsetY = scale * (mMax_Y + mMin_Y) / 2.0 - newHeight / 2.0;
        
        agg::trans_affine_scaling sc(scale);
        agg::trans_affine_translation tr(-offsetX, -offsetY);
        *trans = sc;
        *trans *= tr;
    }
    
    return scale;
}

void
Bounds::update(const agg::trans_affine& trns, pathIterator& helper, double scale,
               const AST::CommandInfo& attr)
{
    Bounds b(trns, helper, scale, attr);
    merge(b);
}