Searched defs:max (Results 1 - 25 of 39) sorted by relevance

12

/inkscape/src/live_effects/parameter/
H A Drandom.h40 void param_set_range(gdouble min, gdouble max);
54 gdouble max; member in class:Inkscape::LivePathEffect::RandomParam
H A Dparameter.cpp61 max(SCALARPARAM_G_MAXDOUBLE),
110 if (value > max)
111 value = max;
117 ScalarParam::param_set_range(gdouble min, gdouble max) argument
130 if (max <= SCALARPARAM_G_MAXDOUBLE) {
131 this->max = max;
133 this->max = SCALARPARAM_G_MAXDOUBLE;
164 rsu->setRange(min, max);
H A Dparameter.h115 void param_set_range(gdouble min, gdouble max);
129 gdouble max; member in class:Inkscape::LivePathEffect::ScalarParam
H A Drandom.cpp33 max = Geom::infinity();
86 if (value > max)
87 value = max;
96 RandomParam::param_set_range(gdouble min, gdouble max) argument
99 this->max = max;
131 regrandom->setRange(min, max);
/inkscape/src/extension/param/
H A Dint.h47 int max (void) { return _max; } function in class:Inkscape::Extension::ParamInt
H A Dfloat.h46 float max (void) { return _max; } function in class:Inkscape::Extension::ParamFloat
/inkscape/src/livarot/
H A DAlphaLigne.h33 int min,max; member in class:AlphaLigne
/inkscape/src/2geom/
H A Dmath-utils.h60 /** Between function - returns true if a number x is within a range: (min < x) && (max > x).
63 template <class T> inline const T& between (const T& min, const T& max, const T& x) argument
64 { return (min < x) && (max > x); }
H A Dcrossing.cpp143 Crossings reverse_ta(Crossings const &cr, std::vector<double> max) { argument
146 double mx = max[i->a];
153 Crossings reverse_tb(Crossings const &cr, unsigned split, std::vector<double> max) { argument
156 double mx = max[i->b - split];
163 CrossingSet reverse_ta(CrossingSet const &cr, unsigned split, std::vector<double> max) { argument
166 Crossings res = reverse_ta(cr[i], max);
173 CrossingSet reverse_tb(CrossingSet const &cr, unsigned split, std::vector<double> max) { argument
176 Crossings res = reverse_tb(cr[i], split, max);
H A Dgeneric-interval.h97 C max() const { return _b[1]; } function in class:Geom::GenericInterval
98 C extent() const { return max() - min(); }
99 C middle() const { return (max() + min()) / 2; }
100 bool isSingular() const { return min() == max(); }
104 if (val > max()) return max();
109 C dmin = std::abs(val - min()), dmax = std::abs(val - max());
110 return dmin <= dmax ? min() : max();
118 return min() <= val && val <= max();
122 return min() <= val.min() && val.max() <
[all...]
H A Dsbasis-math.cpp65 //-max(x,y), min(x,y)--------------------------------------------------------
69 Piecewise<SBasis> max( SBasis const &f, SBasis const &g){ function in namespace:Geom
70 return max(Piecewise<SBasis>(f),Piecewise<SBasis>(g));
75 Piecewise<SBasis> max(Piecewise<SBasis> const &f, SBasis const &g){ function in namespace:Geom
76 return max(f,Piecewise<SBasis>(g));
81 Piecewise<SBasis> max( SBasis const &f, Piecewise<SBasis> const &g){ function in namespace:Geom
82 return max(Piecewise<SBasis>(f),g);
87 Piecewise<SBasis> max(Piecewise<SBasis> const &f, Piecewise<SBasis> const &g){ function in namespace:Geom
88 Piecewise<SBasis> max=partition(f,roots(f-g)); local
89 Piecewise<SBasis> gg =partition(g,max
[all...]
/inkscape/src/libavoid/
H A Dtimer.cpp147 double max = toMsec(cMax[t]); local
150 cTotal[t], cTally[t], avg, max,
/inkscape/src/ui/tools/
H A Ddynamic-base.cpp137 double const max = MAX ( drect.dimensions()[Geom::X], drect.dimensions()[Geom::Y] ); local
139 return Geom::Point(( v[Geom::X] - drect.min()[Geom::X] ) / max, ( v[Geom::Y] - drect.min()[Geom::Y] ) / max);
146 double const max = MAX ( drect.dimensions()[Geom::X], drect.dimensions()[Geom::Y] ); local
148 return Geom::Point(n[Geom::X] * max + drect.min()[Geom::X], n[Geom::Y] * max + drect.min()[Geom::Y]);
/inkscape/src/libcola/
H A Ddefs.h48 inline double max(double x, double y) { function
60 inline int max(int x, int y) { function
/inkscape/src/libuemf/
H A Duemf_utf.c221 \param max number of characters to convert, if 0, until terminator
226 size_t max,
234 if(max){ srclen = 4*max; }
264 \param max number of characters to convert, if 0, until terminator
269 size_t max,
277 if(max){ srclen = 2*max; }
306 \param max number of characters to convert, if 0, until terminator
317 size_t max,
224 U_Utf32leToUtf16le( const uint32_t *src, size_t max, size_t *len ) argument
267 U_Utf16leToUtf32le( const uint16_t *src, size_t max, size_t *len ) argument
315 U_Latin1ToUtf32le( const char *src, size_t max, size_t *len ) argument
357 U_Utf8ToUtf32le( const char *src, size_t max, size_t *len ) argument
399 U_Utf32leToUtf8( const uint32_t *src, size_t max, size_t *len ) argument
441 U_Utf8ToUtf16le( const char *src, size_t max, size_t *len ) argument
483 U_Utf16leToUtf8( const uint16_t *src, size_t max, size_t *len ) argument
529 U_Utf16leToLatin1( const uint16_t *src, size_t max, size_t *len ) argument
595 U_Utf8ToLatin1( const char *src, size_t max, size_t *len ) argument
639 U_Latin1ToUtf8( const char *src, size_t max, size_t *len ) argument
[all...]
/inkscape/src/ui/widget/
H A Dpoint.cpp137 void Point::setRange(double min, double max) argument
139 xwidget.setRange(min, max);
140 ywidget.setRange(min, max);
H A Dscalar.cpp85 double min, max; local
86 static_cast<SpinButton*>(_widget)->get_range(min, max);
93 double min, max; local
94 static_cast<SpinButton*>(_widget)->get_range(min, max);
95 return max;
123 void Scalar::setRange(double min, double max) argument
126 static_cast<SpinButton*>(_widget)->set_range(min, max);
/inkscape/src/
H A Dcolor.cpp258 float max, min, delta; local
260 max = MAX (MAX (r, g), b);
262 delta = max - min;
264 hsv[2] = max;
266 if (max > 0) {
267 hsv[1] = delta / max;
273 if (r == max) {
275 } else if (g == max) {
336 float max = MAX (MAX (r, g), b); local
338 float delta = max
[all...]
H A Dpreferences.h153 * larger than @c max or smaller than @c min. Do not use to store
158 * @param max Maximum value allowed to return.
160 inline int getIntLimited(int def=0, int min=INT_MIN, int max=INT_MAX) const;
174 * larger than @c max or smaller than @c min.
178 * @param max Maximum value allowed to return.
181 inline double getDoubleLimited(double def=0.0, double min=DBL_MIN, double max=DBL_MAX, Glib::ustring const &unit = "") const;
317 * The default value is returned if the actual value is larger than @c max
323 * @param max Maximum value to return.
325 int getIntLimited(Glib::ustring const &pref_path, int def=0, int min=INT_MIN, int max=INT_MAX) { argument
326 return getEntry(pref_path).getIntLimited(def, min, max);
345 getDoubleLimited(Glib::ustring const &pref_path, double def=0.0, double min=DBL_MIN, double max=DBL_MAX, Glib::ustring const &unit = �) argument
619 getDoubleLimited(double def, double min, double max, Glib::ustring const &unit) const argument
[all...]
H A Dsyseq.h133 double max = 0; local
138 if (fabs(A[i][j]) > max) {
140 max = fabs(A[i][j]);
H A Dunclump.cpp220 double max = -HUGE_VAL; local
229 if (dist > max && fabs (dist) < 1e6) {
230 max = dist;
H A Dselection.cpp372 gdouble max = sml ? 1e18 : 0; local
383 if (size < max) {
384 max = size;
/inkscape/src/2geom/numeric/
H A Dvector.h101 double max() const function in class:Geom::NL::detail::BaseVectorImpl
H A Dmatrix.h126 double max() const function in class:Geom::NL::detail::BaseMatrixImpl
H A Dsymmetric-matrix-fs.h166 double max() const function in class:Geom::ConstBaseSymmetricMatrix
168 return m_data.max();

Completed in 43 milliseconds

12