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

/inkscape/src/
H A Dobject-hierarchy.h74 SPObject *bottom() { function in class:Inkscape::ObjectHierarchy
79 * Trim or expand hierarchy at bottom such that object becomes bottom entry.
114 * Add hierarchy from senior to junior, in range (senior, junior], to this hierarchy's bottom.
119 * Add object at bottom of hierarchy.
H A Dlayer-model.cpp44 static void _layer_changed(SPObject *top, SPObject *bottom, Inkscape::LayerModel *layer_model);
88 * Returns current root (=bottom) layer.
100 return _layer_hierarchy ? _layer_hierarchy->bottom() : NULL;
104 * Resets the bottom layer to the current root
245 _layer_changed(SPObject *top, SPObject *bottom, Inkscape::LayerModel *layer_model) argument
247 layer_model->_layer_changed_signal.emit (top, bottom);
H A Ddesktop.cpp90 static void _layer_hierarchy_changed(SPObject *top, SPObject *bottom, SPDesktop *desktop);
879 set_display_area (past.left(), past.top(), past.right(), past.bottom(), 0, false);
900 set_display_area (future.left(), future.top(), future.right(), future.bottom(), 0, false);
1693 _layer_hierarchy_changed(SPObject */*top*/, SPObject *bottom, argument
1696 desktop->_layer_changed_signal.emit (bottom);
H A Dsp-item.cpp352 SPObject * bottom=parent->firstChild();
353 while(dynamic_cast<SPObject*>(bottom) && dynamic_cast<SPObject*>(bottom->next) && bottom!=this && !is_item(*(bottom->next))) bottom=bottom->next;
354 if (bottom && bottom != this) {
355 Inkscape::XML::Node *ref = bottom
368 SPObject* bottom = this->document->getObjectByRepr(our_ref->root())->firstChild(); local
[all...]
/inkscape/src/2geom/
H A Dconvex-hull.h187 Coord bottom() const { return bottomPoint()[Y]; } function in class:Geom::ConvexHull
193 /// If the rightmost edge is vertical, the bottom point edge is returned.
207 * the upper (minimum Y) side, and then along the bottom.
H A Dgeneric-rect.h164 /** @brief Return bottom coordinate of the rectangle (+Y is downwards). */
165 C bottom() const { return f[Y].max(); } function in class:Geom::GenericRect
H A Dconicsec.cpp241 //Point B0 = xC0.bottom();
639 boost::optional<Point> xAx::bottom() const { function in class:Geom::xAx
662 boost::optional<Point> B0 = bottom();
/inkscape/src/libdepixelize/priv/
H A Dpixelgraph.h51 adj.bottom,
68 unsigned bottom: 1; member in struct:Tracer::PixelGraph::Node::Adj
272 // format. Rows in the image are stored top to bottom, and in each row
304 dest->adj.bottom = 0;
326 dest->adj.bottom = 0;
345 assert((it - _width)->adj.bottom);
352 if ( it->adj.bottom )
380 it->adj.bottom = 1;
402 it->adj.bottom = 1;
418 // ...then the "bottom" node
[all...]
H A Dsimplifiedvoronoi.h239 NodeTransform bottom,
336 // ...then the "bottom" cells...
484 // bottom-left
509 // bottom-right
655 return graph_it->adj.bottom;
753 return graph_it->adj.bottom;
795 return graph_it->adj.bottom;
837 return graph_it->adj.bottom;
891 NodeTransform bottom,
907 // this and bottom
881 _genericComplexBottomRight(PixelGraph::const_iterator a_it, PixelGraph::const_iterator b_it, PixelGraph::const_iterator c_it, PixelGraph::const_iterator d_it, Cell *const cells_it, int x, int y, PointTransform transform, NodeTransform, NodeTransform topright, NodeTransform right, NodeTransform bottomright, NodeTransform bottom, NodeTransform bottomleft, NodeTransform, NodeTransform topleft) argument
[all...]
/inkscape/src/extension/internal/
H A Dwmf-inout.cpp1526 double left, right, top, bottom; // values used, because a bounding rect can have values reversed L<->R, T<->B local
1608 Placeable.Dst.bottom = Dst.y;
1614 Placeable.Dst.bottom = round(((double) Placeable.Inch) * 210.0/25.4);
1631 d->PixelsInY = Placeable.Dst.bottom - Placeable.Dst.top + 1;
2036 tmp_path << "L " << pix_to_xy( d, rc.right, rc.bottom ) << " ";
2037 tmp_path << "L " << pix_to_xy( d, rc.left, rc.bottom ) << " ";
2055 tmp_path << "L " << pix_to_xy( d, rc.right, rc.bottom ) << " ";
2056 tmp_path << "L " << pix_to_xy( d, rc.left, rc.bottom ) << " ";
2096 double cx = pix_to_x_point( d, (rc.left + rc.right)/2.0, (rc.bottom + rc.top)/2.0 );
2097 double cy = pix_to_y_point( d, (rc.left + rc.right)/2.0, (rc.bottom
[all...]
/inkscape/src/libuemf/
H A Duwmf.c753 rclBox.bottom = rclBox16.bottom;
765 \param top the topmost of rc.top and rc.bottom
767 \param bottom the bottommost of rc.top and rc.bottom
769 void U_sanerect16(U_RECT16 rc, double *left, double *top, double *right, double *bottom){ argument
772 if(rc.top < rc.bottom){ *top = rc.top; *bottom = rc.bottom; }
773 else{ *top = rc.bottom; *botto
989 U_SCAN_set( uint16_t count, uint16_t top, uint16_t bottom, uint16_t *ScanLines ) argument
[all...]
H A Duwmf.h844 int16_t bottom; //!< bottom coordinate member in struct:__anon343
1055 uint16_t bottom; //!< Y coordinate of the bottom scanline member in struct:__anon351
2101 void U_sanerect16(U_RECT16 rc, double *left, double *top, double *right, double *bottom);
2114 U_SCAN *U_SCAN_set(uint16_t count, uint16_t top, uint16_t bottom, uint16_t *ScanLines);
H A Duemf.h392 #define U_TA_BOTTOM 0x08 //!< Reference point is on bottom edge of bounding rectangle
569 int32_t bottom; //!< bottom coordinate member in struct:__anon120
952 #define U_GRADIENT_FILL_RECT_V 0x00000001 //!< Grident is top to bottom.

Completed in 86 milliseconds