Lines Matching refs:point_i
665 void sp_item_gradient_edit_stop(SPItem *item, GrPointType point_type, guint point_i, Inkscape::PaintTarget fill_or_stroke)
697 GtkWidget *dialog = sp_gradient_vector_editor_new (vector, sp_get_stop_i (vector, point_i));
707 guint32 sp_item_gradient_stop_query_style(SPItem *item, GrPointType point_type, guint point_i, Inkscape::PaintTarget fill_or_stroke)
749 SPStop *stopi = sp_get_stop_i (vector, point_i);
768 if (point_i >= mg->array.corners.size()) {
771 SPMeshNode const* cornerpoint = mg->array.corners[ point_i ];
799 void sp_item_gradient_stop_set_style(SPItem *item, GrPointType point_type, guint point_i, Inkscape::PaintTarget fill_or_stroke, SPCSSAttr *stop)
802 g_message("sp_item_gradient_stop_set_style(%p, %d, %d, %d, %p)", item, point_type, point_i, fill_or_stroke, stop);
848 SPStop *stopi = sp_get_stop_i (vector, point_i);
876 mg->array.corners[ point_i ]->color = color;
884 mg->array.corners[ point_i ]->opacity = opacity;
1007 void sp_item_gradient_set_coords(SPItem *item, GrPointType point_type, guint point_i, Geom::Point p_w, Inkscape::PaintTarget fill_or_stroke, bool write_repr, bool scale)
1010 g_message("sp_item_gradient_set_coords(%p, %d, %d, (%f, %f), ...)", item, point_type, point_i, p_w[Geom::X], p_w[Geom::Y] );
1074 lg->vector.stops.at(point_i).offset = offset;
1075 SPStop* stopi = sp_get_stop_i(vector, point_i);
1169 rg->vector.stops.at(point_i).offset = offset;
1170 SPStop* stopi = sp_get_stop_i(vector, point_i);
1186 rg->vector.stops.at(point_i).offset = offset;
1187 SPStop* stopi = sp_get_stop_i(vector, point_i);
1220 mg->array.corners[ point_i ]->p = p;
1227 mg->array.handles[ point_i ]->p = p;
1233 mg->array.tensors[ point_i ]->p = p;
1275 Geom::Point getGradientCoords(SPItem *item, GrPointType point_type, guint point_i, Inkscape::PaintTarget fill_or_stroke)
1278 g_message("getGradientCoords(%p, %d, %d, %d)", item, point_type, point_i, fill_or_stroke);
1298 if (lg->vector.stops.size() < point_i) {
1302 gdouble offset = lg->vector.stops.at(point_i).offset;
1327 if (rg->vector.stops.size() < point_i) {
1331 gdouble offset = rg->vector.stops.at(point_i).offset;
1337 if (rg->vector.stops.size() < point_i) {
1341 gdouble offset = rg->vector.stops.at(point_i).offset;
1354 p = mg->array.corners[ point_i ]->p;
1358 p = mg->array.handles[ point_i ]->p;
1363 p = mg->array.tensors[ point_i ]->p;