Symbol: approximation_scale
headers/libs/agg/agg_arc.h
47
void approximation_scale(double s);
headers/libs/agg/agg_arc.h
48
double approximation_scale() const { return m_scale; }
headers/libs/agg/agg_conv_contour.h
46
void approximation_scale(double as) { base_type::generator().approximation_scale(as); }
headers/libs/agg/agg_conv_contour.h
54
double approximation_scale() const { return base_type::generator().approximation_scale(); }
headers/libs/agg/agg_conv_curve.h
81
void approximation_scale(double s)
headers/libs/agg/agg_conv_curve.h
83
m_curve3.approximation_scale(s);
headers/libs/agg/agg_conv_curve.h
84
m_curve4.approximation_scale(s);
headers/libs/agg/agg_conv_curve.h
87
double approximation_scale() const
headers/libs/agg/agg_conv_curve.h
89
return m_curve4.approximation_scale();
headers/libs/agg/agg_conv_segmentator.h
35
void approximation_scale(double s) { base_type::vpgen().approximation_scale(s); }
headers/libs/agg/agg_conv_segmentator.h
36
double approximation_scale() const { return base_type::vpgen().approximation_scale(); }
headers/libs/agg/agg_conv_stroke.h
54
void approximation_scale(double as) { base_type::generator().approximation_scale(as); }
headers/libs/agg/agg_conv_stroke.h
59
double approximation_scale() const { return base_type::generator().approximation_scale(); }
headers/libs/agg/agg_curves.h
122
void approximation_scale(double s) { m_approximation_scale = s; }
headers/libs/agg/agg_curves.h
123
double approximation_scale() const { return m_approximation_scale; }
headers/libs/agg/agg_curves.h
230
void approximation_scale(double s);
headers/libs/agg/agg_curves.h
231
double approximation_scale() const;
headers/libs/agg/agg_curves.h
424
void approximation_scale(double s) { m_approximation_scale = s; }
headers/libs/agg/agg_curves.h
425
double approximation_scale() const { return m_approximation_scale; }
headers/libs/agg/agg_curves.h
518
void approximation_scale(double s)
headers/libs/agg/agg_curves.h
520
m_curve_inc.approximation_scale(s);
headers/libs/agg/agg_curves.h
521
m_curve_div.approximation_scale(s);
headers/libs/agg/agg_curves.h
524
double approximation_scale() const
headers/libs/agg/agg_curves.h
526
return m_curve_inc.approximation_scale();
headers/libs/agg/agg_curves.h
57
void approximation_scale(double s);
headers/libs/agg/agg_curves.h
58
double approximation_scale() const;
headers/libs/agg/agg_curves.h
636
void approximation_scale(double s)
headers/libs/agg/agg_curves.h
638
m_curve_inc.approximation_scale(s);
headers/libs/agg/agg_curves.h
639
m_curve_div.approximation_scale(s);
headers/libs/agg/agg_curves.h
641
double approximation_scale() const { return m_curve_inc.approximation_scale(); }
headers/libs/agg/agg_ellipse.h
48
void approximation_scale(double scale);
headers/libs/agg/agg_ellipse.h
80
inline void ellipse::approximation_scale(double scale)
headers/libs/agg/agg_math_stroke.h
76
void approximation_scale(double as) { m_approx_scale = as; }
headers/libs/agg/agg_math_stroke.h
81
double approximation_scale() const { return m_approx_scale; }
headers/libs/agg/agg_rounded_rect.h
46
void approximation_scale(double s) { m_arc.approximation_scale(s); }
headers/libs/agg/agg_rounded_rect.h
47
double approximation_scale() const { return m_arc.approximation_scale(); }
headers/libs/agg/agg_vcgen_contour.h
58
void approximation_scale(double as) { m_stroker.approximation_scale(as); }
headers/libs/agg/agg_vcgen_contour.h
63
double approximation_scale() const { return m_stroker.approximation_scale(); }
headers/libs/agg/agg_vcgen_stroke.h
66
void approximation_scale(double as) { m_stroker.approximation_scale(as); }
headers/libs/agg/agg_vcgen_stroke.h
71
double approximation_scale() const { return m_stroker.approximation_scale(); }
headers/libs/agg/agg_vpgen_segmentator.h
34
void approximation_scale(double s) { m_approximation_scale = s; }
headers/libs/agg/agg_vpgen_segmentator.h
35
double approximation_scale() const { return m_approximation_scale; }
src/libs/agg/font_freetype/agg_font_freetype.cpp
553
m_curves16.approximation_scale(4.0);
src/libs/agg/font_freetype/agg_font_freetype.cpp
554
m_curves32.approximation_scale(4.0);
src/libs/icon/shape/VectorPath.cpp
853
curve.approximation_scale(smoothScale);
src/libs/icon/transformer/PathSource.cpp
78
fAGGCurvedPath.approximation_scale(fLastTransformerScale * fGlobalScale);
src/libs/icon/transformer/PathSource.cpp
86
fAGGCurvedPath.approximation_scale(fLastTransformerScale * fGlobalScale);
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
383
fCurves.approximation_scale(transform.scale());
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
418
fCurves.approximation_scale(transform.scale());
src/servers/app/drawing/Painter/AGGTextRenderer.cpp
62
fCurves.approximation_scale(2.0);
src/servers/app/drawing/Painter/Painter.cpp
1374
path.approximation_scale(2.0);
src/servers/app/drawing/Painter/Painter.cpp
1395
path.approximation_scale(2.0);
src/servers/app/drawing/Painter/Painter.cpp
1979
stroke.approximation_scale(fTransform.scale());
src/servers/app/drawing/Painter/Painter.cpp
2009
stroke.approximation_scale(fTransform.scale());
src/servers/app/font/FontEngine.cpp
451
fCurves.approximation_scale(4.0);