Searched defs:height (Results 1 - 25 of 116) sorted by relevance

12345

/inkscape/src/
H A Dsp-rect.h30 void setPosition(double x, double y, double width, double height);
69 SVGLength height; member in class:SPRect
H A Dsp-filter-primitive.h37 SVGLength x, y, height, width; member in class:SPFilterPrimitive
H A Dsp-root.h41 SVGLength height; member in class:SPRoot
H A Dsp-text.h51 SVGLength height; member in class:SPText
H A Dsp-use.h40 SVGLength height; member in class:SPUse
H A Dsp-image.h37 SVGLength height; member in class:SPImage
H A Dsp-filter.h53 SVGLength height; member in class:SPFilter
H A Dviewbox.cpp55 double height = g_ascii_strtod (eptr, &eptr); local
61 if ((width > 0) && (height > 0)) {
63 this->viewBox = Geom::Rect::from_xywh(x, y, width, height);
76 // double x, y, width, height;
77 // ss >> x >> y >> width >> height;
172 double scale_y = in.height() / this->viewBox.height();
188 double height = this->viewBox.height() * scale_uniform; local
201 y = 0.5 * (in.height()
[all...]
H A Dsp-cursor.cpp59 int height = 0; local
65 ss >> height; local
102 guint32 *pixmap_buffer = new guint32[width * height];
104 for (int y = 0; y < height; y++) {
111 return gdk_pixbuf_new_from_data(reinterpret_cast<guchar*>(pixmap_buffer), GDK_COLORSPACE_RGB, TRUE, 8, width, height, width * sizeof(guint32), free_cursor_data, NULL);
/inkscape/src/filters/
H A Dturbulence.h36 SVGLength x, y, height, width; member in class:SPFeTurbulence
/inkscape/src/libdepixelize/
H A Dsplines.h96 int height() const function in class:Tracer::Splines
/inkscape/src/extension/internal/bitmap/
H A Dcrop.cpp25 int height = image->baseRows() - (_top + _bottom); local
26 if (width > 0 and height > 0) {
27 image->crop(Magick::Geometry(width, height, _left, _top, false, false));
/inkscape/src/extension/internal/
H A Dmetafile-inout.h52 size_t height; member in struct:Inkscape::Extension::Internal::__anon63
72 static void toPNG(PMEMPNG accum, int width, int height, const char *px);
H A Dgdkpixbuf-input.cpp77 double height = pb->height(); local
102 height *= yscale;
110 sp_repr_set_svg_double(image_node, "height", height);
/inkscape/src/trace/
H A Dimagemap-gdk.cpp16 int height = gdk_pixbuf_get_height(buf); local
21 GrayMap *grayMap = GrayMapCreate(width, height);
28 for (y=0 ; y<height ; y++)
52 malloc(sizeof(guchar) * grayMap->width * grayMap->height * 3);
60 0, 8, grayMap->width, grayMap->height,
66 for (y=0 ; y<grayMap->height ; y++)
93 int height = gdk_pixbuf_get_height(buf); local
98 PackedPixelMap *ppMap = PackedPixelMapCreate(width, height);
105 for (y=0 ; y<height ; y++)
136 int height local
[all...]
H A Dfilterset.cpp43 int height = me->height; local
47 int lastY = height-3;
49 GrayMap *newGm = GrayMapCreate(width, height);
53 for (int y = 0 ; y<height ; y++)
93 int height = me->height; local
97 int lastY = height-3;
99 RgbMap *newGm = RgbMapCreate(width, height);
103 for (int y = 0 ; y<height ;
173 int height = gm->height; local
[all...]
H A Dimagemap.cpp36 fprintf(f, "P6 %d %d 255\n", me->width, me->height);
38 for (int y=0 ; y<me->height; y++)
63 GrayMap *GrayMapCreate(int width, int height) argument
78 me->height = height;
80 malloc(sizeof(unsigned long) * width * height);
87 malloc(sizeof(unsigned long *) * height);
96 for (int i=0 ; i<height ; i++)
146 fprintf(f, "P6 %d %d 255\n", me->width, me->height);
148 for (int y=0 ; y<me->height;
177 PackedPixelMapCreate(int width, int height) argument
286 RgbMapCreate(int width, int height) argument
396 IndexedMapCreate(int width, int height) argument
[all...]
H A Dimagemap.h69 int height; member in struct:GrayMap_def
87 GrayMap *GrayMapCreate(int width, int height);
157 int height; member in struct:PackedPixelMap_def
178 PackedPixelMap *PackedPixelMapCreate(int width, int height);
253 int height; member in struct:RgbMap_def
273 RgbMap *RgbMapCreate(int width, int height);
341 int height; member in struct:IndexedMap_def
371 IndexedMap *IndexedMapCreate(int width, int height);
/inkscape/src/ui/view/
H A Dview.cpp98 void View::emitResized (double width, double height) argument
100 _resized_signal.emit (width, height);
/inkscape/src/ui/widget/
H A Dlabelled.cpp48 void Labelled::setWidgetSizeRequest(int width, int height) argument
51 _widget->set_size_request(width, height);
/inkscape/src/live_effects/
H A Dlpe-lattice.cpp126 double height = boundingbox_Y.extent(); local
141 (vi + iv*(3-2*vi))*height/3.);
152 sb2[dim][i][corner] = dl/( dim ? height : width )*pow(4.0,ui+vi);
/inkscape/src/display/
H A Dnr-filter-primitive.cpp41 // 100%, 100% ("x", "y", "width", "height") of the -> filter <- region. If set, then
104 SVGLength const &width, SVGLength const &height) {
108 _subregion_height = height;
120 // x, y, width, and height are independently defined (i.e. one can be defined, by default, to
126 double height = 0; local
132 if( !_subregion_height._set ) height = fa.height();
148 double len_y = bb.height();
156 if( _subregion_y._set && (_subregion_y.unit != SVGLength::PERCENT) ) y = bb.min()[Y] + bb.height() * _subregion_y.value;
158 if( _subregion_height._set && (_subregion_height.unit != SVGLength::PERCENT) ) height
103 set_subregion(SVGLength const &x, SVGLength const &y, SVGLength const &width, SVGLength const &height) argument
[all...]
H A Dsodipodi-ctrl.h41 gint height; member in struct:SPCtrl
/inkscape/src/libvpsc/
H A Dgenerate-constraints.h37 double getCentreY() const { return minY+height()/2.0; }
39 double height() const { return getMaxY()-minY; } function in class:vpsc::Rectangle
46 moveMinY(y-height()/2.0);
53 maxY=y+height()-yBorder;
/inkscape/src/ui/cache/
H A Dsvg_preview_cache.cpp47 int height = ibox.height(); local
51 dy = (dy - height)/2;

Completed in 962 milliseconds

12345