Searched defs:dest_vector (Results 1 - 1 of 1) sorted by relevance
/inkscape/src/ |
H A D | sp-text.cpp | 969 void TextTagAttributes::joinSingleAttribute(std::vector<SVGLength> *dest_vector, std::vector<SVGLength> const &first_vector, std::vector<SVGLength> const &second_vector, unsigned second_index) argument 972 *dest_vector = first_vector; 974 dest_vector->resize(second_index + second_vector.size()); 976 std::copy(first_vector.begin(), first_vector.end(), dest_vector->begin()); 979 std::fill(dest_vector->begin() + first_vector.size(), dest_vector->begin() + second_index, zero_length); 981 std::copy(first_vector.begin(), first_vector.begin() + second_index, dest_vector->begin()); 982 std::copy(second_vector.begin(), second_vector.end(), dest_vector->begin() + second_index);
|
Completed in 3353 milliseconds