Searched defs:next_stop (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/ui/tools/
H A Dgradient-tool.cpp250 SPStop *next_stop = this_stop->getNextStop(); local
259 if (next_stop) {
265 if (next_stop == last_stop) {
272 if (next_stop == last_stop) {
280 if (next_stop == last_stop) {
297 *next_stops = g_slist_prepend (*next_stops, next_stop);
332 SPStop *next_stop = this_stop->getNextStop(); local
333 if (next_stop) {
335 next_stops = g_slist_prepend (next_stops, next_stop);
348 SPStop *next_stop local
[all...]
/inkscape/src/
H A Dgradient-chemistry.cpp638 SPStop *sp_vector_add_stop(SPGradient *vector, SPStop* prev_stop, SPStop* next_stop, gfloat offset) argument
641 g_message("sp_vector_add_stop(%p, %p, %p, %f)", vector, prev_stop, next_stop, offset);
652 guint32 const c2 = next_stop->get_rgba32();
653 guint32 cnew = average_color (c1, c2, (offset - prev_stop->offset) / (next_stop->offset - prev_stop->offset));
H A Dgradient-drag.cpp524 SPStop* next_stop = prev_stop->getNextStop(); local
526 while ( (next_stop) && (next_stop->offset < new_stop_offset) ) {
527 prev_stop = next_stop;
528 next_stop = next_stop->getNextStop();
531 if (!next_stop) {
537 SPStop *newstop = sp_vector_add_stop (vector, prev_stop, next_stop, new_stop_offset);

Completed in 34 milliseconds