Searched defs:min (Results 1 - 25 of 33) sorted by relevance

12

/inkscape/src/live_effects/parameter/
H A Drandom.h40 void param_set_range(gdouble min, gdouble max);
53 gdouble min; member in class:Inkscape::LivePathEffect::RandomParam
H A Dparameter.cpp60 min(-SCALARPARAM_G_MAXDOUBLE),
112 if (value < min)
113 value = min;
117 ScalarParam::param_set_range(gdouble min, gdouble max) argument
125 if (min >= -SCALARPARAM_G_MAXDOUBLE) {
126 this->min = min;
128 this->min = -SCALARPARAM_G_MAXDOUBLE;
164 rsu->setRange(min, max);
H A Dparameter.h115 void param_set_range(gdouble min, gdouble max);
128 gdouble min; member in class:Inkscape::LivePathEffect::ScalarParam
H A Drandom.cpp32 min = -Geom::infinity();
88 if (value < min)
89 value = min;
96 RandomParam::param_set_range(gdouble min, gdouble max) argument
98 this->min = min;
131 regrandom->setRange(min, max);
/inkscape/src/extension/param/
H A Dint.h49 int min (void) { return _min; } function in class:Inkscape::Extension::ParamInt
H A Dfloat.h48 float min (void) { return _min; } function in class:Inkscape::Extension::ParamFloat
/inkscape/src/livarot/
H A DAlphaLigne.h33 int min,max; member in class:AlphaLigne
H A Dint-line.cpp539 // compute the min-max of the pixels to be rasterized from the min-max of the inpur bitlignes
1005 int min = runs[0].st; local
1007 if ( dest.endPix <= min || dest.startPix >= max ) {
/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 Dgeneric-interval.h96 C min() const { return _b[0]; } 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(); }
103 if (val < min()) return min();
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() <
[all...]
H A Dsbasis-math.cpp65 //-max(x,y), min(x,y)--------------------------------------------------------
101 min( SBasis const &f, SBasis const &g){ return -max(-f,-g); } function in namespace:Geom
106 min(Piecewise<SBasis> const &f, SBasis const &g){ return -max(-f,-g); } function in namespace:Geom
111 min( SBasis const &f, Piecewise<SBasis> const &g){ return -max(-f,-g); } function in namespace:Geom
116 min(Piecewise<SBasis> const &f, Piecewise<SBasis> const &g){ return -max(-f,-g); } function in namespace:Geom
287 double a=range.min(), b=range.max();
293 b=-range.min();
311 if (range.min()<0 || range.max()<0){
H A Dgeneric-rect.h127 CPoint p0(std::numeric_limits<C>::min(), std::numeric_limits<C>::min());
143 CPoint min() const { CPoint p(f[X].min(), f[Y].min()); return p; } function in class:Geom::GenericRect
149 * the one given by min(). For the standard coordinate system used
154 case 0: return CPoint(f[X].min(), f[Y].min());
155 case 1: return CPoint(f[X].max(), f[Y].min());
157 default: return CPoint(f[X].min(),
[all...]
/inkscape/src/display/
H A Dsp-ctrlquadr.cpp79 Geom::Point min = buf->rect.min(); local
81 Geom::Point p1 = (cq->p1 * cq->affine) - min;
82 Geom::Point p2 = (cq->p2 * cq->affine) - min;
83 Geom::Point p3 = (cq->p3 * cq->affine) - min;
84 Geom::Point p4 = (cq->p4 * cq->affine) - min;
H A Dnr-filter-slot.cpp46 Geom::Point min = bbox_trans.min(); local
47 _slot_x = min[X];
48 _slot_y = min[Y];
/inkscape/src/libcola/
H A Ddefs.h53 } inline double min(double x, double y) { function
67 inline int min(int x, int y) { function
/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);
87 return min;
93 double min, max; local
94 static_cast<SpinButton*>(_widget)->get_range(min, 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
261 min = MIN (MIN (r, g), b);
262 delta = max - min;
337 float min = MIN (MIN (r, g), b); local
338 float delta = max - min;
340 hsl[2] = (max + min)/2.0;
347 hsl[1] = delta / (max + min);
349 hsl[1] = delta / (2 - max - min);
H A Dpreferences.h153 * larger than @c max or smaller than @c min. Do not use to store
157 * @param min Minimum 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.
177 * @param min Minimum 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;
318 * or smaller than @c min. Do not use to store Boolean values.
322 * @param min Minimum 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, ma
345 getDoubleLimited(Glib::ustring const &pref_path, double def=0.0, double min=DBL_MIN, double max=DBL_MAX, Glib::ustring const &unit = �) argument
598 getIntLimited(int def, int min, int max) const argument
619 getDoubleLimited(double def, double min, double max, Glib::ustring const &unit) const argument
[all...]
H A Dunclump.cpp196 double min = HUGE_VAL; local
206 if (dist < min && fabs (dist) < 1e6) {
207 min = dist;
/inkscape/src/2geom/numeric/
H A Dvector.h106 double min() const function in class:Geom::NL::detail::BaseVectorImpl
H A Dmatrix.h131 double min() const function in class:Geom::NL::detail::BaseMatrixImpl
H A Dsymmetric-matrix-fs.h161 double min() const function in class:Geom::ConstBaseSymmetricMatrix
163 return m_data.min();
/inkscape/src/ui/dialog/
H A Dgrid-arrange-tab.cpp68 if ((a->min()[Y] < b->min()[Y] + 0.1) && (a->min()[Y] > b->min()[Y] - b_height)) {
70 } else if ((b->min()[Y] < a->min()[Y] + 0.1) && (b->min()[Y] > a->min()[Y] - a_height)) {
72 } else if (b->min()[Y] == a->min()[
317 Geom::Point min; local
[all...]
/inkscape/src/extension/internal/pdfinput/
H A Dpdf-input.cpp444 double min = _fallbackPrecisionSlider_adj->get_lower(); local
447 double interval_len = ( max - min ) / (double)num_intervals;
449 int comment_idx = (int)floor( ( value - min ) / interval_len );

Completed in 80 milliseconds

12