• using R version 2.15.0 Patched (2012-05-19 r59366)
  • using platform: x86_64-unknown-linux-gnu (64-bit)
  • using session charset: UTF-8
  • checking for file ‘ptinpoly/DESCRIPTION’ ... OK
  • this is package ‘ptinpoly’ version ‘2.0’
  • checking package namespace information ... OK
  • checking package dependencies ... OK
  • checking if this is a source package ... OK
  • checking if there is a namespace ... OK
  • checking for executable files ... OK
  • checking whether package ‘ptinpoly’ can be installed ... OK
  • checking installed package size ... OK
  • checking package directory ... OK
  • checking for portable file names ... OK
  • checking for sufficient/correct file permissions ... OK
  • checking DESCRIPTION meta-information ... OK
  • checking top-level files ... OK
  • checking index information ... OK
  • checking package subdirectories ... OK
  • checking R files for non-ASCII characters ... OK
  • checking R files for syntax errors ... OK
  • checking whether the package can be loaded ... OK
  • checking whether the package can be loaded with stated dependencies ... OK
  • checking whether the package can be unloaded cleanly ... OK
  • checking whether the namespace can be loaded with stated dependencies ... OK
  • checking whether the namespace can be unloaded cleanly ... OK
  • checking for unstated dependencies in R code ... OK
  • checking S3 generic/method consistency ... OK
  • checking replacement functions ... OK
  • checking foreign function calls ... OK
  • checking R code for possible problems ... OK
  • checking Rd files ... OK
  • checking Rd metadata ... OK
  • checking Rd cross-references ... OK
  • checking for missing documentation entries ... OK
  • checking for code/documentation mismatches ... OK
  • checking Rd \usage sections ... OK
  • checking Rd contents ... OK
  • checking for unstated dependencies in examples ... OK
  • checking contents of ‘data’ directory ... OK
  • checking data for non-ASCII characters ... OK
  • checking data for ASCII and uncompressed saves ... OK
  • checking line endings in C/C++/Fortran sources/headers ... OK
  • checking line endings in Makefiles ... OK
  • checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
  • checking compiled code ... NOTE
    File ‘/home/hornik/tmp/R.check/r-patched/Work/build/Packages/ptinpoly/libs/ptinpoly.so’:
    Found ‘_ZSt4cout’, possibly from ‘std::cout’ (C++)
    Object: ‘pinpolyhedronA.o’

    Compiled code should not call functions which might terminate R nor
    write to stdout/stderr instead of to the console.

    See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual.
  • checking examples ... ERROR
    Running examples in ‘ptinpoly-Ex.R’ failed
    The error most likely occurred in:

    > ### Name: pip3d
    > ### Title: Test for Point Containment in 3D Polyhedron
    > ### Aliases: pip3d
    > ### Keywords: methods
    >
    > ### ** Examples
    >
    > #-------------------------------------------
    > # Simple Cube example.
    >
    > # Load sample data defining a simple cube.
    > data(verts)
    > data(faces)
    >
    > # Also load sample data for five test points.
    > data(queries)
    >
    > # Test whether each point in 'queries' is contained in
    > # the simple cube defined by 'verts' and 'faces'.
    > # This should return "1 0 0 0 -1".
    > containment = pip3d(verts,faces,queries);
    >
    > #-------------------------------------------
    > # Torus example.
    >
    > # Make a donut-shaped polyhedron.
    > # library(misc3d)
    > torus <- parametric3d(fx = function(u,v) (1+0.25*cos(v))*cos(u),
    + fy = function(u,v) (1+0.25*cos(v))*sin(u),
    + fz = function(u,v) 0.25*sin(v),
    + u = seq(0,2*pi,length.out=10),
    + v = seq(0,2*pi,length.out=10),
    + engine = "none", color="orange", alpha=0.25)
    >
    > # If desired, this torus can be rendered for visualization, e.g.:
    > # library(geometry)
    > # library(rgl)
    > # library(misc3d)
    > drawScene.rgl(torus)
    Error in rgl.cur() : rgl_dev_getcurrent
    Calls: drawScene.rgl -> rgl.cur
    Execution halted