Skip to content

Commit

Permalink
fix for bad static declaration in header
Browse files Browse the repository at this point in the history
  • Loading branch information
deepayan committed Aug 11, 2007
1 parent be42e54 commit 89b2e06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
1 change: 0 additions & 1 deletion R/print.trellis.R
Expand Up @@ -692,7 +692,6 @@ print.trellis <-
gp = global.gpar,
name = trellis.vpname("toplevel")))


if (!is.null(main))
{
drawInViewport(main,
Expand Down
7 changes: 4 additions & 3 deletions src/threeDplot.c
Expand Up @@ -3,9 +3,10 @@



static void calculate_angles(double *x, double *y, double *z,
double *ls, double *misc,
double distance)
static void
calculate_angles(double *x, double *y, double *z,
double *ls, double *misc,
double distance)
{

double x1, x2, y1, y2, z1, z2, len;
Expand Down
4 changes: 0 additions & 4 deletions src/threeDplot.h
Expand Up @@ -5,10 +5,6 @@
#include <Rdefines.h>


static void calculate_angles(double *x, double *y, double *z,
double *ls, double *misc,
double distance);


SEXP wireframePanelCalculations(SEXP xArg, SEXP yArg, SEXP zArg, SEXP rotArg,
SEXP distanceArg,
Expand Down

0 comments on commit 89b2e06

Please sign in to comment.