Searched defs:ta (Results 1 - 6 of 6) sorted by relevance
/inkscape/src/2geom/ |
H A D | intersection.h | 54 Intersection(TA const &sa, TB const &sb, TimeA const &ta, TimeB const &tb) argument 55 : first(ta) 57 , _point(lerp(0.5, sa.pointAt(ta), sb.pointAt(tb))) 61 Intersection(TimeA const &ta, TimeB const &tb, Point const &p) argument 62 : first(ta)
|
H A D | crossing.h | 50 double ta, tb; //time on a and b of crossing member in struct:Geom::Crossing 52 Crossing() : dir(false), ta(0), tb(1), a(0), b(1) {} 53 Crossing(double t_a, double t_b, bool direction) : dir(direction), ta(t_a), tb(t_b), a(0), b(1) {} 54 Crossing(double t_a, double t_b, unsigned ai, unsigned bi, bool direction) : dir(direction), ta(t_a), tb(t_b), a(ai), b(bi) {} 55 bool operator==(const Crossing & other) const { return a == other.a && b == other.b && dir == other.dir && ta == other.ta && tb == other.tb; } 59 double getTime(unsigned cur) const { return a == cur ? ta : tb; } 60 double getOtherTime(unsigned cur) const { return a == cur ? tb : ta; } 106 return are_near(a.ta, b.ta) [all...] |
H A D | angle.h | 301 Angle ta = _sweep ? a - _start_angle : _start_angle - a; local 302 return ta.radians0() / (2*M_PI);
|
H A D | toposweep.cpp | 179 double ta = section_root(a, ps, b.fp[1-dim], Dim2(1-dim)); local 181 if(ta == -1) ta = (a.t + a.f) / 2; 182 return section_order(a, ta, b, b.f); 442 this_splits.push_back(xs[j].ta);
|
/inkscape/src/libnrtype/ |
H A D | TextWrapper.cpp | 659 text_boundary const &ta = *reinterpret_cast<text_boundary const *>(a); local 661 if ( ta.uni_pos < tb.uni_pos ) return -1; 662 if ( ta.uni_pos > tb.uni_pos ) return 1; 664 if ( ta.start && !tb.start ) return -1; 665 if ( !ta.start && tb.start ) return 1;
|
/inkscape/src/live_effects/ |
H A D | lpe-knot.cpp | 95 double const ta, double const width){ 108 //TODO: explore the path fwd/backward from ta (worth?) 132 unsigned rk = upper_bound( times.begin(), times.end(), ta ) - times.begin(); 94 findShadowedTime(Geom::Path const &patha, std::vector<Geom::Point> const &pt_and_dir, double const ta, double const width) argument
|
Completed in 26 milliseconds