Searched defs:domain (Results 1 - 4 of 4) sorted by relevance
/inkscape/src/io/ |
H A D | resource.cpp | 30 Util::ptr_shared<char> get_path(Domain domain, Type type, char const *filename) argument 33 switch (domain) {
|
/inkscape/src/2geom/ |
H A D | piecewise.h | 199 //Offsets the piecewise domain 207 //Scales the domain of the function by a value. 0 will result in an empty Piecewise. 218 //Retrieves the domain in interval form 219 inline Interval domain() const { return Interval(cuts.front(), cuts.back()); } function in class:Geom::Piecewise 221 //Transforms the domain into another interval 389 //Loop which handles cuts within the Piecewise<T> domain 427 * Returns a Piecewise<T> with a defined domain of [min(from, to), max(from, to)]. 931 b.setDomain(a.domain());
|
/inkscape/src/live_effects/ |
H A D | lpe-knot.cpp | 72 std::vector<Geom::Interval> complementOf(Geom::Interval I, std::vector<Geom::Interval> domain){ argument 74 if (!domain.empty()) { 75 double min = domain.front().min(); 76 double max = domain.back().max(); 80 for (unsigned i = 0; i<domain.size(); i++){ 81 boost::optional<Geom::Interval> I1i = intersect(domain.at(i),I1); 83 boost::optional<Geom::Interval> I2i = intersect(domain.at(i),I2);
|
H A D | lpe-rough-hatches.cpp | 352 LPERoughHatches::generateLevels(Interval const &domain, double x_org){ argument 354 int n = int((domain.min()-x_org)/hatch_dist); 356 //double x = domain.min() + double(hatch_dist)/2.; 358 double scale = 1+(hatch_dist*growth/domain.extent()); 359 while (x < domain.max()){
|
Completed in 109 milliseconds