Searched refs:gap (Results 1 - 13 of 13) sorted by relevance
/inkscape/src/libvpsc/ |
H A D | constraint.cpp | 13 Constraint::Constraint(Variable *left, Variable *right, double gap, bool equality) argument 16 gap(gap), 42 os<<*c.left<<"+"<<c.gap<<type<<*c.right<<"("<<c.slack()<<")"<<(c.active?"-active":"");
|
H A D | constraint.h | 28 double gap; member in class:vpsc::Constraint 30 Constraint(Variable *left, Variable *right, double gap, bool equality=false); 32 inline double slack() const { return right->position() - gap - left->position(); }
|
H A D | blocks.cpp | 91 double dist = c->right->offset - c->left->offset - c->gap; 122 double dist = c->left->offset + c->gap - c->right->offset;
|
H A D | solve_VPSC.cpp | 162 v->gap = v->slack();
|
H A D | block.cpp | 82 double dist = c->right->offset - c->left->offset - c->gap;
|
/inkscape/src/ |
H A D | removeoverlap.cpp | 45 Geom::Point const gap(xGap, yGap); 54 Geom::Point min(item_box->min() - .5*gap); 55 Geom::Point max(item_box->max() + .5*gap); 56 // A negative gap is allowed, but will lead to problems when the gap is larger than
|
/inkscape/src/display/ |
H A D | canvas-bpath.h | 99 void sp_canvas_bpath_set_stroke (SPCanvasBPath *cbp, guint32 rgba, gdouble width, SPStrokeJoinType join, SPStrokeCapType cap, double dash=0, double gap=0);
|
H A D | canvas-bpath.cpp | 212 sp_canvas_bpath_set_stroke (SPCanvasBPath *cbp, guint32 rgba, gdouble width, SPStrokeJoinType join, SPStrokeCapType cap, double dash, double gap) argument 222 cbp->dashes[1] = gap;
|
/inkscape/src/livarot/ |
H A D | LivarotDefs.h | 82 // stupid version of dashes: in dash x is plain, dash x+1 must be empty, so the gap field is extremely redundant 85 bool gap; member in struct:one_dash
|
/inkscape/src/libcola/ |
H A D | gradient_projection.h | 19 : left(l), right(r), gap(g) {} 22 double gap; member in class:SimpleConstraint 236 vars[(*c)->left],vars[(*c)->right],(*c)->gap));
|
H A D | connected_components.cpp | 103 new SimpleConstraint(u.second,v.second,c->gap)); 111 new SimpleConstraint(u.second,v.second,c->gap));
|
/inkscape/src/libavoid/ |
H A D | vpsc.h | 174 double gap; member in class:Avoid::Constraint 176 Constraint(Variable *left, Variable *right, double gap, bool equality=false);
|
H A D | vpsc.cpp | 512 double dist = c->right->offset - c->left->offset - c->gap; 545 double dist = c->left->offset + c->gap - c->right->offset; 707 double dist = c->right->offset - c->left->offset - c->gap; 1214 Constraint::Constraint(Variable *left, Variable *right, double gap, bool equality) argument 1217 gap(gap), 1245 - gap - left->scale * left->position(); 1260 os<<lscale.str()<<*c.left<<"+"<<c.gap<<type<<rscale.str()<<*c.right;
|
Completed in 723 milliseconds