Searched defs:vr (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/libvpsc/
H A Dblock.cpp354 Constraint* Block::splitBetween(Variable* const vl, Variable* const vr, argument
358 f<<" need to split between: "<<*vl<<" and "<<*vr<<endl;
360 Constraint *c=findMinLMBetween(vl, vr);
/inkscape/src/libcola/
H A Dgradient_projection.h50 vpsc::Variable* vl, * vr; local
53 vs.push_back(vr=new vpsc::Variable(vs.size(), rightMargin, weight));
59 cs.push_back(new vpsc::Constraint(vs[o->first], vr, o->second));
/inkscape/src/libavoid/
H A Dvpsc.cpp1153 * Block needs to be split because of a violated constraint between vl and vr.
1158 Constraint* Block::splitBetween(Variable* const vl, Variable* const vr, argument
1162 f<<" need to split between: "<<*vl<<" and "<<*vr<<endl;
1164 Constraint *c=findMinLMBetween(vl, vr);
/inkscape/src/trace/
H A Dsiox.cpp217 float vr =(float)(vx * 3.2406 + vy * -1.5372 + vz * -0.4986); local
221 if (vr > 0.0031308)
222 vr = (float)(1.055 * pow(vr, (1.0 / 2.4)) - 0.055);
224 vr = 12.92 * vr;
236 return getRGB(0.0, vr, vg, vb);

Completed in 559 milliseconds