Displaying 4 results from an estimated 4 matches for "fontindex".
2001 Jun 25
5
Trouble compiling R-1.3.0 under Tru64
Dear all,
I have some difficulty getting R-1.3.0 to run on the alpha, with osf4.0e
(Tru64, or whatever they call it... :-) ).
configure reports the following configuration:
R is now configured for alphaev6-dec-osf4.0e
Source directory: .
Installation directory: /astro/local
C compiler: gcc -mieee -g -O2
C++ compiler: c++ -g -O2
FORTRAN
2001 Jun 25
5
Trouble compiling R-1.3.0 under Tru64
Dear all,
I have some difficulty getting R-1.3.0 to run on the alpha, with osf4.0e
(Tru64, or whatever they call it... :-) ).
configure reports the following configuration:
R is now configured for alphaev6-dec-osf4.0e
Source directory: .
Installation directory: /astro/local
C compiler: gcc -mieee -g -O2
C++ compiler: c++ -g -O2
FORTRAN
2003 Dec 14
1
contour() should handle the asp parameter
...title(...)
}
if (!is.double(z))
storage.mode(z) <- "double"
method <- pmatch(method[1], c("simple", "edge", "flattest"))
if (!is.null(vfont))
vfont <- c(typeface = pmatch(vfont[1], Hershey$typeface) -
1, fontindex = pmatch(vfont[2], Hershey$fontindex))
if (!is.null(labels))
labels <- as.character(labels)
.Internal(contour(as.double(x), as.double(y), z, as.double(levels),
labels, labcex, drawlabels, method, vfont, col = col,
lty = lty, lwd = lwd))
if (!add) {
if...
2000 Feb 08
1
DEC cc doesn't like c++ comments (PR#416)
...((x < 0) || (x > 1) ||
(y < 0) || (y > 1))
@@ -718,7 +718,7 @@
sprintf(buffer, " %.00f ", zc);
if (vectorFonts) {
- // 1, 1 => sans serif, basic font
+ /* 1, 1 => sans serif, basic font */
labelDistance = GVStrWidth(buffer, typeface, fontindex,
INCHES, dd);
labelHeight = GVStrHeight(buffer, typeface, fontindex,
@@ -850,7 +850,7 @@
if (lowestVariance < 9999999)
gotLabel = 1;
}
- } // switch (method)
+ } /* switch (method) */
if (method == 0) {
GPolyline(ns, xxx, yyy, US...