search for: gconvert

Displaying 14 results from an estimated 14 matches for "gconvert".

Did you mean: convert
2001 Feb 17
4
Comments on R-1.2.1 builds (PR#851)
...^ cc-1552 c89: WARNING File = devPS.c, Line = 823 The variable "setfill" is set but never used. rcolor setbg, setfg, setfill; ^ cc-1185 c89: WARNING File = devPS.c, Line = 1328 An enumerated type is mixed with another type. GConvert(&x0, &y0, coords, DEVICE, dd); ^ cc-1185 c89: WARNING File = devPS.c, Line = 1329 An enumerated type is mixed with another type. GConvert(&x1, &y1, coords, DEVICE, dd); ^ cc-1185 c89: WARNING File = devPS.c, Line = 1...
1999 Apr 21
2
GConvert error when using pictex (PR#173)
[I'm refiling this one due to mailer config messup] I get an error whenever I try to plot a histogram in pictex. The error doesn't occur for X11 or postscript. > x<-c(1,2,3) > pictex() > hist(x) Error: Bad units specified in GConvert, please report! platform i686-unknown-linux arch i686 os linux system i686, linux status Patched (unreleased snapshot) status.rev 0 major 0...
1999 Apr 21
0
GConvert error
...ame results (ie I have tried without the width, height and debug). > pictex(file="slcity.pictex", width = 5, height = 4,debug=1) > hist(x,20,main = "",xlab="cost") Error: Bad units specified in GConvert, please report! > dev.off() X11 2 > hist(x,20,main = "",xlab="cost") >...
2006 Jun 12
1
Ruuid had non-zero exit status (PR#8965)
..." /usr/local/include/glib-2.0/glib/gcompletion.h:43: error: parse error before "gsize" In file included from /usr/local/include/glib-2.0/glib.h:37, from uuidP.h:33, from Ruuid.h:5, from Rinit.c:1: /usr/local/include/glib-2.0/glib/gconvert.h:33: error: parse error before "G_BEGIN_DECLS" /usr/local/include/glib-2.0/glib/gconvert.h:35: error: syntax error before "typedef" /usr/local/include/glib-2.0/glib/gconvert.h:56: error: parse error before "gsize" /usr/local/include/glib-2.0/glib/gconvert.h:63: err...
1999 Feb 16
1
Missing tick marks bug on alpha solved
...le function below: static void X11_Line(double x1, double y1, double x2, double y2, int coords, DevDesc *dd) { double xx1, yy1, xx2, yy2; <----------- should be int! x11Desc *xd = (x11Desc *) dd->deviceSpecific; /* In-place conversion ok */ GConvert(&x1, &y1, coords, DEVICE, dd); GConvert(&x2, &y2, coords, DEVICE, dd); xx1 = (int) x1; yy1 = (int) y1; xx2 = (int) x2; yy2 = (int) y2; SetColor(dd->gp.col, dd); SetLinetype(dd->gp.lty, dd->gp.lwd, dd); XDrawLine(display, xd->window, xd-&g...
2001 Jul 23
2
hang-up with log="x" and segments (PR#1030)
I experienced the following problem with R 1.3.0 which is probably a bug. The program hangs-up if 1.) a coordinate of segments is outside the ploting region and 2.) the option log="x" is used. ## ## works fine ## plot(1,1, xlim=c(0.5, 2), ylim=c(0.5, 2)) segments(0.5 , 1.2, 1, 0.6) segments(0.25, 1.2, 1, 0.6) segments(1 , 1.2, 1, 0.6) ## ## hang-up ## plot(1,1, xlim=c(0.5, 2),
2002 Feb 04
1
R in IRIX 64-bit
...es Gnome support: no Tcl/Tk support: no R profiling support: yes R as a shared library: no When I use gmake after a 'few' WARNINGS like ..... cc-1185 cc: WARNING File = g_alab_her.c, Line = 247 An enumerated type is mixed with another type. GConvert(&currX, &currY, g_unit, INCHES, dd); ^ It errors with... building package `base' ../../../library/base/R/base is unchanged Cannot create ../../../library/base/../../../src/library/base/DESCRIPTION - No such file or directory ../../../library/base/../../../...
1999 Apr 21
0
[MAILER-DAEMON@biostat.ku.dk: Returned mail: /home/sfe1/r-bugs/.forward: line 1: "|/home/sfe1/r-bugs/bin/new_message Rnew"... User r-bugs@biostat.ku.dk doesn't have a valid shell for mailing to programs] (PR#170)
...u.dk [130.225.108.193]) by biostat.ku.dk (8.8.7/8.8.7) with ESMTP id NAA09575 for <R-bugs@biostat.ku.dk>; Wed, 21 Apr 1999 13:37:43 +0200 Date: Wed, 21 Apr 1999 13:37:43 +0200 From: pwhiting@sprint.net Message-Id: <199904211137.NAA09575@biostat.ku.dk> To: R-bugs@biostat.ku.dk Subject: GConvert error when using pictex Full_Name: Peter Whiting Version: 0.64.0 OS: linux Submission from: (NULL) (168.191.164.23) I get an error whenever I try to plot a histogram in pictex. The error doesn't occur for X11 or postscript. > x<-c(1,2,3) > pictex() > hist(x) Error: Bad units spe...
2000 Feb 08
1
DEC cc doesn't like c++ comments (PR#416)
...dd->gp.lwd set in _draw_hershey_string */ lwdsave = dd->gp.lwd; - // When drawing vector font, always use "solid" lines + /* When drawing vector font, always use "solid" lines */ ltysave = dd->gp.lty; dd->gp.lty = LTY_SOLID; @@ -330,7 +330,7 @@ GConvertYUnits(y_offset * label_height, g_unit, INCHES, dd)); /* call stroker on the sequence of strokes obtained from each char (the stroker may manipulate the line width) */ -//_draw_hershey_stroke (dd, true, 0, HERSHEY_EM); + /*_draw_hershey_stroke (dd, true, 0, HERSHEY_EM); */...
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
...03-29 23:36:12.000000000 +0900 --- R/src/library/grDevices/src/devPS.c 2008-03-30 01:44:20.000000000 +0900 *************** *** 49,54 **** --- 49,55 ---- #include <R_ext/Error.h> #include "Fileio.h" #include "grDevices.h" + #include <Rgraphics.h> /* for GConvert and GUnit */ #ifdef HAVE_ERRNO_H #include <errno.h> *************** *** 5136,5141 **** --- 5137,5146 ---- Rboolean inText; char title[1024]; + char **annots; /* annotations in a page */ + int annotsmax; /* allocated size */ + int annotspos; /* nubmer of annotatio...
1999 Jul 08
1
Bad Units Bug in barplot with pictex output device. (PR#220)
...a barplot with the pictex output device. The following commands demonstrate the bug: ----------------------------------------------- > errors <- c(3.08, 35.38, 33.85, 20.00, 7.69) > errors [1] 3.08 35.38 33.85 20.00 7.69 > pictex() > barplot(errors) Error: Bad units specified in GConvert, please report! > ----------------------------------------------- Here is my R version information: ----------------------------------------------- > Version() $platform [1] "i386-unknown-freebsd2.2.7" $arch [1] "i386" $os [1] "freebsd2.2.7" $system [1] &qu...
2008 Feb 08
0
xspline(..., draw=FALSE) fails if there is no open device (PR#10728)
...e saying t= hat an > open graphics device is needed even when unused with draw=3DFALSE. > > =20 I think the reason is that 2d splines are aspect ratio dependent. =20 There's this loop inside, for (i =3D 0; i < nx; i++) { xx[i] =3D x[i]; yy[i] =3D y[i]; GConvert(&(xx[i]), &(yy[i]), USER, DEVICE, dd); } =20 and that will not work without knowing how to convert to device=20 coordinates. The default for "border" may get you first, though. That=20 seems to be documented incorrectly, by the way. -p > Cheers, Jari Oksanen > &gt...
2007 Mar 19
2
use Windows icons in Wine?
Is there some method to use a Windows program icon in Wine? droid
2008 Feb 08
1
xspline(..., draw=FALSE) fails if there is no open device (PR#10727)
Full_Name: Jari Oksanen Version: 2.6.2 RC (2008-02-07 r44369) OS: Linux Submission from: (NULL) (130.231.102.145) Even if function xspline() is called with argument draw=FALSE, it requires a graphics device (that it won't use since it was draw=FALSE). I run into this because I intended to use xspline within a function (that does not yet draw: there is plot method for that), and the function