diff options
author | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
commit | ab8cc85adde879fb963c94d15675783f2cf4b183 (patch) | |
tree | c202482327f474583b750b2c45dedfc4e4312b1d /src/graph/viewAlone/viewAlone.c.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/graph/viewAlone/viewAlone.c.pamphlet')
-rw-r--r-- | src/graph/viewAlone/viewAlone.c.pamphlet | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/src/graph/viewAlone/viewAlone.c.pamphlet b/src/graph/viewAlone/viewAlone.c.pamphlet new file mode 100644 index 00000000..02c294a0 --- /dev/null +++ b/src/graph/viewAlone/viewAlone.c.pamphlet @@ -0,0 +1,141 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/graph/viewAlone viewAlone.c} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +/* +Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + - Neither the name of The Numerical ALgorithms Group Ltd. nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +@ +<<*>>= +<<license>> + +#define _VIEWALONE_C +#include "axiom-c-macros.h" +#include "useproto.h" + +#include <stdlib.h> +#include "viewAlone.h" + +#include "all_alone.H1" + +/************* global variables **************/ + +viewManager viewP; /* note that in viewman, this is called viewports */ + +/* 3D stuff */ +view3DStruct doView3D; + +/* 2D stuff */ +view2DStruct doView2D; +graphStruct graphArray[maxGraphs]; +graphStateStruct graphStateArray[maxGraphs]; + +/* tube stuff */ +tubeModel doViewTube; + +int viewType; +int filedes,ack; + +char errorStr[80]; + + +int viewOkay = 0; +int viewError = -1; + +FILE *viewFile; +char filename[256]; +char pathname[256]; + +/************* main program **************/ + +#ifdef _NO_PROTO +int main (argc,argv) + int argc; + char *argv[]; +#else +int main (int argc,char *argv[]) +#endif +{ + printf("viewAlone called with argc=%d\n",argc); + printf("viewAlone called with argv[1]=%s\n",argv[0]); + printf("viewAlone called with argv[2]=%s\n",argv[1]); +/******** Open files and Figure out the viewport type ********/ + + sprintf(filename,"%s%s",argv[1],".VIEW/data"); + if((viewFile = fopen(filename,"r")) == NULL ) { + + sprintf(filename,"%s%s",argv[1],"/data"); + if((viewFile = fopen(filename,"r")) == NULL ){ + fprintf(stderr,"Error: Cannot find the file %s%s or %s%s\n", + argv[1],".VIEW/data",argv[1],"/data"); + exit(-1); + } + sprintf(pathname,"%s",argv[1]); + } + else{ + sprintf(pathname,"%s%s",argv[1],".VIEW"); + } + fscanf(viewFile,"%d\n",&viewType); + printf("filename = %s\n",filename); + printf("viewType = %d\n",viewType); + switch (viewType) { + + case view3DType: + case viewTubeType: + printf("calling spoonView3D\n"); + spoonView3D(viewType); + break; + + case view2DType: + printf("calling spoonView2D\n"); + spoonView2D(); + break; + + } /* switch */ + printf("The first number in the file, %d, called the viewType, not a valid value. It must be a number in the range of [1..4]\n",viewType); + return(0); + } +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |