Searched refs:lambda (Results 1 - 11 of 11) sorted by relevance
/inkscape/src/live_effects/ |
H A D | lpe-circle_3pts.cpp | 45 double lambda = 1/det * (-w[1] * F[0] + w[0] * F[1]); local 47 Point M = D + v * lambda;
|
H A D | lpe-perp_bisector.cpp | 70 double lambda = Geom::nearest_time(s, lpe->M, lpe->perp_dir); local 72 lpe->C = lpe->M + lpe->perp_dir * lambda; 73 lpe->length_left.param_set_value(lambda); 75 lpe->D = lpe->M + lpe->perp_dir * lambda; 76 lpe->length_right.param_set_value(-lambda);
|
H A D | lpe-angle_bisector.cpp | 106 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->dir); local 107 lpe->length_left.param_set_value(-lambda); 119 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->dir); local 120 lpe->length_right.param_set_value(lambda);
|
H A D | lpe-parallel.cpp | 125 double lambda = L2(s - lpe->offset_pt) * sgn(dot(s - lpe->offset_pt, lpe->dir)); local 126 lpe->length_left.param_set_value(-lambda); 140 double lambda = L2(s - lpe->offset_pt) * sgn(dot(s - lpe->offset_pt, lpe->dir)); local 141 lpe->length_right.param_set_value(lambda);
|
H A D | lpe-tangent_to_curve.cpp | 152 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->derivA); local 153 lpe->length_left.param_set_value(-lambda); 165 double lambda = Geom::nearest_time(s, lpe->ptA, lpe->derivA); local 166 lpe->length_right.param_set_value(lambda);
|
/inkscape/src/ |
H A D | line-geometry.h | 46 double lambda (Geom::Point const pt); 47 inline Geom::Point point_from_lambda (double const lambda) { argument 48 return (pt + lambda * Geom::unit_vector (v_dir)); }
|
H A D | line-geometry.cpp | 65 Geom::Coord lambda = (line.d0 - Geom::dot(pt, line.normal)) / denom; 66 return pt + lambda * v_dir; 84 double Line::lambda (Geom::Point const pt) function in class:Box3D::Line 87 double lambda = sign * Geom::L2 (pt - this->pt); local 90 Geom::Point test = point_from_lambda (lambda); 95 return lambda;
|
/inkscape/src/ui/tools/ |
H A D | arc-tool.cpp | 377 double lambda = new_dir.length() / dir[Geom::Y]; local 378 r = Geom::Rect (c - lambda*dir, c + lambda*dir);
|
/inkscape/src/2geom/ |
H A D | elliptical-arc.cpp | 659 Coord lambda = hypot(p[X]/r[X], p[Y]/r[Y]); local 660 if (lambda > 1) { 661 r *= lambda;
|
H A D | conicsec.h | 76 double lambda() const;
|
H A D | conicsec.cpp | 110 double RatQuad::lambda() const { function in class:Geom::RatQuad 156 return toCubic(lambda());
|
Completed in 984 milliseconds