/inkscape/src/live_effects/parameter/ |
H A D | random.h | 40 void param_set_range(gdouble min, gdouble max); 53 gdouble min; member in class:Inkscape::LivePathEffect::RandomParam
|
H A D | parameter.cpp | 60 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 D | parameter.h | 115 void param_set_range(gdouble min, gdouble max); 128 gdouble min; member in class:Inkscape::LivePathEffect::ScalarParam
|
H A D | random.cpp | 32 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 D | int.h | 49 int min (void) { return _min; } function in class:Inkscape::Extension::ParamInt
|
H A D | float.h | 48 float min (void) { return _min; } function in class:Inkscape::Extension::ParamFloat
|
/inkscape/src/livarot/ |
H A D | AlphaLigne.h | 33 int min,max; member in class:AlphaLigne
|
H A D | int-line.cpp | 539 // 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 D | math-utils.h | 60 /** 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 D | generic-interval.h | 96 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 D | sbasis-math.cpp | 65 //-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 D | generic-rect.h | 127 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 D | sp-ctrlquadr.cpp | 79 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 D | nr-filter-slot.cpp | 46 Geom::Point min = bbox_trans.min(); local 47 _slot_x = min[X]; 48 _slot_y = min[Y];
|
/inkscape/src/libcola/ |
H A D | defs.h | 53 } inline double min(double x, double y) { function 67 inline int min(int x, int y) { function
|
/inkscape/src/ui/widget/ |
H A D | point.cpp | 137 void Point::setRange(double min, double max) argument 139 xwidget.setRange(min, max); 140 ywidget.setRange(min, max);
|
H A D | scalar.cpp | 85 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 D | color.cpp | 258 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 D | preferences.h | 153 * 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 D | unclump.cpp | 196 double min = HUGE_VAL; local 206 if (dist < min && fabs (dist) < 1e6) { 207 min = dist;
|
/inkscape/src/2geom/numeric/ |
H A D | vector.h | 106 double min() const function in class:Geom::NL::detail::BaseVectorImpl
|
H A D | matrix.h | 131 double min() const function in class:Geom::NL::detail::BaseMatrixImpl
|
H A D | symmetric-matrix-fs.h | 161 double min() const function in class:Geom::ConstBaseSymmetricMatrix 163 return m_data.min();
|
/inkscape/src/ui/dialog/ |
H A D | grid-arrange-tab.cpp | 68 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 D | pdf-input.cpp | 444 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 );
|