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

/inkscape/src/
H A Dsp-flowregion.cpp337 static void UnionShape(Shape **base_shape, Shape const *add_shape) argument
339 if (*base_shape == NULL)
340 *base_shape = new Shape;
341 if ( (*base_shape)->hasEdges() == false ) {
342 (*base_shape)->Copy(const_cast<Shape*>(add_shape));
345 temp->Booleen(const_cast<Shape*>(add_shape), *base_shape, bool_op_union); local
346 delete *base_shape;
347 *base_shape = temp;

Completed in 14 milliseconds