Searched defs:bounds (Results 1 - 25 of 28) sorted by relevance

12

/inkscape/src/ui/tool/
H A Dselectable-control-point.h28 virtual Geom::Rect bounds() const { function in class:Inkscape::UI::SelectableControlPoint
H A Dtransform-handle-set.cpp246 _sc_opposite = _th.bounds().corner(_corner + 2);
334 Geom::Rect b = _th.bounds();
414 _rot_opposite = _th.bounds().corner(_corner + 2);
497 Geom::Rect b = _th.bounds();
728 Geom::Rect TransformHandleSet::bounds() const function in class:Inkscape::UI::TransformHandleSet
801 Geom::Rect b = bounds();
H A Dcontrol-point-selection.cpp298 /** Get the bounds of the selection.
306 Geom::OptRect ControlPointSelection::bounds() function in class:Inkscape::UI::ControlPointSelection
308 return size() == 1 ? (*_points.begin())->bounds() : _bounds;
480 _handles->setBounds(*bounds(), preserve_center);
484 _handles->setBounds(p->bounds());
526 Geom::Rect b = *bounds();
591 double maxext = bounds()->maxExtent();
/inkscape/src/libnrtype/
H A DTextWrapper.h58 text_boundary *bounds; member in class:text_wrapper
H A DFontInstance.cpp510 Geom::OptRect bounds = bounds_exact(*n_g.pathvector); local
511 if (bounds) {
512 n_g.bbox[0] = bounds->left();
513 n_g.bbox[1] = bounds->top();
514 n_g.bbox[2] = bounds->right();
515 n_g.bbox[3] = bounds->bottom();
H A DLayout-TNG-Output.cpp218 // Set item bounds without filter enlargement
223 Geom::OptRect Layout::bounds(Geom::Affine const &transform, int start, int length) const function in class:Inkscape::Text::Layout
776 } else { // outside the bounds of the path: hide the glyphs
/inkscape/src/2geom/
H A Dconvex-hull.cpp163 OptRect ConvexHull::bounds() const function in class:Geom::ConvexHull
400 //OPT: quickly find an obscured point and find the bounds by extending from there. then push all points not within the bounds in order.
543 * and in b by convexity, thus in both. Need to prove still finite bounds.)
569 * and in b by convexity, thus in both. Need to prove still finite bounds.)
H A Dcrossing.cpp117 std::vector<Rect> bounds(Path const &a) { function in namespace:Geom
H A Dcrossing.h41 #include <2geom/sweep-bounds.h>
131 std::vector<Rect> bounds(C const &a) { function in namespace:Geom
142 std::vector<Rect> bounds(Path const &a);
166 std::vector<std::vector<unsigned> > cull = sweep_bounds(bounds(a), bounds(b));
H A Drecursive-bezier-intersection.cpp29 void bounds(double &minax, double &maxax, function in class:Geom::OldBezier
171 a.bounds(minax, maxax, minay, maxay);
173 b.bounds(minbx, maxbx, minby, maxby);
H A Dsbasis-2d.cpp178 Interval bounds = *bounds_fast(compose(f,candidates[i])); local
179 double new_error = (fabs(bounds.max())>fabs(bounds.min()) ? fabs(bounds.max()) : fabs(bounds.min()) );
/inkscape/src/display/
H A Dsp-canvas-item.h62 Geom::Rect bounds; member in struct:SPCanvasItem
H A Ddrawing-image.cpp64 DrawingImage::bounds() const function in class:Inkscape::DrawingImage
87 Geom::Rect r = bounds() * _ctm;
145 Geom::Rect r = bounds();
187 Geom::Rect r = bounds();
208 Geom::Rect r = bounds();
H A Ddrawing-item.cpp497 DrawingItem::setItemBounds(Geom::OptRect const &bounds) argument
499 _item_bbox = bounds;
H A Dsp-canvas.cpp782 Geom::OptRect bounds; local
790 bounds.expandTo(Geom::Point(i->x1, i->y1));
791 bounds.expandTo(Geom::Point(i->x2, i->y2));
795 if (bounds) {
796 item->x1 = bounds->min()[Geom::X];
797 item->y1 = bounds->min()[Geom::Y];
798 item->x2 = bounds->max()[Geom::X];
799 item->y2 = bounds->max()[Geom::Y];
/inkscape/src/extension/internal/
H A Dgrid.cpp99 Geom::OptRect bounds = selection->visualBounds(); local
100 if (bounds) {
101 bounding_area = *bounds;
H A Dcairo-render-context.cpp1169 Geom::Interval bounds = hatch->bounds(); local
1170 overflow_right_strip = floor(bounds.max() / hatch->pitch()) * hatch->pitch();
1171 overflow_steps = ceil((overflow_right_strip - bounds.min()) / hatch->pitch()) + 1;
/inkscape/src/extension/plugins/grid2/
H A Dgrid.cpp105 Geom::OptRect bounds = selection->visualBounds(); local
106 if (bounds) {
107 bounding_area = *bounds;
/inkscape/src/
H A Dsp-hatch-path.cpp194 Geom::Interval SPHatchPath::bounds() const function in class:SPHatchPath
H A Dsp-marker.cpp427 const gchar *generate_marker(std::vector<Inkscape::XML::Node*> &reprs, Geom::Rect bounds, SPDocument *document, Geom::Point center, Geom::Affine move) argument
439 sp_repr_set_svg_double(repr, "markerWidth", bounds.dimensions()[Geom::X]);
440 sp_repr_set_svg_double(repr, "markerHeight", bounds.dimensions()[Geom::Y]);
H A Dselection.cpp396 Geom::OptRect Selection::bounds(SPItem::BBoxType type) const function in class:Inkscape::Selection
427 return bounds(SPItem::VISUAL_BBOX);
429 return bounds(SPItem::GEOMETRIC_BBOX);
H A Dsp-hatch.cpp553 Geom::Interval SPHatch::bounds() const function in class:SPHatch
561 result = child->bounds();
563 result |= child->bounds();
636 Geom::Interval bounds = this->bounds(); local
638 gdouble overflow_right_strip = floor(bounds.max() / pitch) * pitch;
639 info.overflow_steps = ceil((overflow_right_strip - bounds.min()) / pitch) + 1;
H A Dsp-pattern.cpp381 const gchar *SPPattern::produce(const std::vector<Inkscape::XML::Node *> &reprs, Geom::Rect bounds, argument
391 sp_repr_set_svg_double(repr, "width", bounds.dimensions()[Geom::X]);
392 sp_repr_set_svg_double(repr, "height", bounds.dimensions()[Geom::Y]);
H A Dsp-item.cpp878 Geom::OptRect SPItem::bounds(BBoxType type, Geom::Affine const &transform) const function in class:SPItem
/inkscape/src/ui/dialog/
H A Dalign-and-distribute.cpp249 BBoxSort::BBoxSort(SPItem *pItem, Geom::Rect const &bounds, Geom::Dim2 orientation, double kBegin, double kEnd) : argument
251 bbox (bounds)

Completed in 3201 milliseconds

12