search for: basefontsize

Displaying 4 results from an estimated 4 matches for "basefontsize".

2000 May 22
4
text() with large cex parameter crashes X11() (PR#553)
Trying to use text() with very large cex parameter crashes R when using the X11() device X11() plot(1,1,type="n") text(1,1,"foo", cex=10) This also crashes R points(1,1,pch="A", cex=10) presumably because we are trying to load a font that doesn't exist, but I haven't looked into it. Martyn --please do not edit the information below-- Version: platform
2004 Jul 30
1
plot(x,y) core dump
.../* From here on, if we need to bail out with "error", */ /* then we must also free(xd). */ /* Font will load at first use. */ if (ps < 6 || ps > 24) ps = 12; xd->fontface = -1; xd->fontsize = -1; xd->basefontface = 1; xd->basefontsize = ps; xd->handleOwnEvents = FALSE; xd->window = (Window) NULL; return(xd); } However I got core dump while I try to use plot() from R: R : Copyright 2004, The R Foundation for Statistical Computing Version 1.9.1 (2004-06-21), ISBN 3-900051-00-3 R is free so...
2004 Jul 30
0
plot() core dump
.../* From here on, if we need to bail out with "error", */ /* then we must also free(xd). */ /* Font will load at first use. */ if (ps < 6 || ps > 24) ps = 12; xd->fontface = -1; xd->fontsize = -1; xd->basefontface = 1; xd->basefontsize = ps; xd->handleOwnEvents = FALSE; xd->window = (Window) NULL; return(xd); } However I got core dump while I try to use plot() from R: R : Copyright 2004, The R Foundation for Statistical Computing Version 1.9.1 (2004-06-21), ISBN 3-900051-00-3 R is free so...
2004 Aug 04
0
RE: Does tcltk matter for the plot
...t; >> >> /* Font will load at first use. */ >> >> >> >> if (ps < 6 || ps > 24) ps = 12; >> >> xd->fontface = -1; >> >> xd->fontsize = -1; >> >> xd->basefontface = 1; >> >> xd->basefontsize = ps; >> >> xd->handleOwnEvents = FALSE; >> >> xd->window = (Window) NULL; >> >> >> >> return(xd); >> >>} >> >> >> >>However I got core dump while I try to use plot() from R: >> >> >...