aboutsummaryrefslogtreecommitdiff
path: root/src/graph/view3D
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/view3D')
-rw-r--r--src/graph/view3D/component3d.c10
-rw-r--r--src/graph/view3D/main3d.c14
-rw-r--r--src/graph/view3D/spadAction3d.c2
-rw-r--r--src/graph/view3D/testcol.c14
-rw-r--r--src/graph/view3D/viewport3d.c4
5 files changed, 22 insertions, 22 deletions
diff --git a/src/graph/view3D/component3d.c b/src/graph/view3D/component3d.c
index a4d0622c..2b361295 100644
--- a/src/graph/view3D/component3d.c
+++ b/src/graph/view3D/component3d.c
@@ -76,7 +76,7 @@ scaleComponents (void)
yRange = viewData.ymax - viewData.ymin;
zRange = viewData.zmax - viewData.zmin;
- /* We scale down, normalize the data, if it is coming from AXIOM
+ /* We scale down, normalize the data, if it is coming from OpenAxiom
(handled by viewman). If the data is coming from a file (handled by
viewAlone) then it should already been scaled down.
*/
@@ -113,7 +113,7 @@ scaleComponents (void)
/* We now normalize all the points in this program. The information
needed to link the normalized set of points back to the real object
- space scale created in AXIOM is held in viewData.scaleToView. */
+ space scale created in OpenAxiom is held in viewData.scaleToView. */
viewData.xmin *= viewData.scaleToView;
viewData.xmax *= viewData.scaleToView;
viewData.ymin *= viewData.scaleToView;
@@ -329,7 +329,7 @@ readComponentsFromViewman (void)
maxLength = anLPoint->numOfPoints;
for (k=0; k<anLPoint->numOfPoints; k++,anIndex++) {
readViewman(anIndex,intSize);
- /* AXIOM arrays are one based, C arrays are zero based */
+ /* OpenAxiom arrays are one based, C arrays are zero based */
if (!viewAloned) (*anIndex)--;
}
} /* for LPoints in LLPoints (j) */
@@ -410,7 +410,7 @@ calcNormData (void)
points is. For 3D explicit equations of two variables, the closed
boolean for this level is False and the closed boolean for each sublist
is False as well. For 3D parameterized curves of one variable, the
- closed boolean for this level is defined by the user from AXIOM ,
+ closed boolean for this level is defined by the user from OpenAxiom ,
(which defaults to False) and the closed boolean for each sublist is True.
*/
@@ -544,7 +544,7 @@ draw3DComponents (int dFlag)
((anLLPoint->lp+1)->numOfPoints > 2))
componentType = polygonComponent;
}
- /* Check for corrupt data and NaN data is made in AXIOM . */
+ /* Check for corrupt data and NaN data is made in OpenAxiom . */
if (componentType == stillDontKnow)
componentType = surfaceComponent;
diff --git a/src/graph/view3D/main3d.c b/src/graph/view3D/main3d.c
index a3d2e3a0..313e9040 100644
--- a/src/graph/view3D/main3d.c
+++ b/src/graph/view3D/main3d.c
@@ -102,12 +102,12 @@ int mono, totalColors, totalSolid, totalDithered, totalHues,
int drawMore;
-int spadMode=no, /* yes if receiving AXIOM command and
+int spadMode=no, /* yes if receiving OpenAxiom command and
calling drawViewport */
spadDraw=no; /* yes if drawing viewport for
- an AXIOM command */
+ an OpenAxiom command */
int spadSignalReceived=0; /* yes if current state is a result of
- a signal from AXIOM */
+ a signal from OpenAxiom */
int inNextEvent=no; /* true just before a call to
XNextEvent */
jmp_buf jumpFlag;
@@ -181,7 +181,7 @@ int finishedList=no, zoomed=yes, translated = yes,
gotToggle = no;
poly *quickList;
- /** if not connected to AXIOM **/
+ /** if not connected to OpenAxiom **/
int viewAloned;
/** for drawing the box **/
@@ -273,7 +273,7 @@ main(void)
/**** link Xwindows to viewports - X10 feature ****/
table = XCreateAssocTable(nbuckets);
- /**** Create AXIOM color map ****/
+ /**** Create OpenAxiom color map ****/
totalShades = 0;
totalColors = XInitSpadFill(dsply,scrn,&colorMap,
&totalHues,&totalSolidShades,
@@ -520,7 +520,7 @@ main(void)
i = 123; /* Used in viewman, what is this for? */
code = check(write(Socket,&i,intSize));
- /* Check if I am getting stuff from AXIOM or, if I am viewAlone. */
+ /* Check if I am getting stuff from OpenAxiom or, if I am viewAlone. */
readViewman(&viewAloned,intSize);
readViewman(&viewData,sizeof(view3DStruct));
readViewman(&i,intSize);
@@ -541,7 +541,7 @@ main(void)
switch (viewData.typeOf3D) {
/* Currently, the view3DType information doesn't get sent from
- AXIOM - all surfaces are alike regardless of how they
+ OpenAxiom - all surfaces are alike regardless of how they
were created. We may revert back to receiving this information
in case we want to take advantage of certain properties of
certain surfaces (e.g. z=f(x,y)). */
diff --git a/src/graph/view3D/spadAction3d.c b/src/graph/view3D/spadAction3d.c
index 4c5dcfc8..64530676 100644
--- a/src/graph/view3D/spadAction3d.c
+++ b/src/graph/view3D/spadAction3d.c
@@ -199,7 +199,7 @@ spadAction (void)
if (viewport->haveControl) drawControlPanel();
break;
-/* Non-uniform scaling is not in AXIOM yet. */
+/* Non-uniform scaling is not in OpenAxiom yet. */
/* Neither is object or origin rotation. */
case perspectiveOnOff:
diff --git a/src/graph/view3D/testcol.c b/src/graph/view3D/testcol.c
index 9c3a58d9..c783943f 100644
--- a/src/graph/view3D/testcol.c
+++ b/src/graph/view3D/testcol.c
@@ -116,12 +116,12 @@ int someInt;
int drawMore;
-int spadMode=no, /* yes if receiving AXIOM command and
+int spadMode=no, /* yes if receiving OpenAxiom command and
calling drawViewport */
spadDraw=no; /* yes if drawing viewport for
- an AXIOM command */
+ an OpenAxiom command */
int spadSignalReceived=0; /* yes if current state is a result of
- a signal from AXIOM */
+ a signal from OpenAxiom */
int inNextEvent=no; /* true just before a call to
XNextEvent */
jmp_buf jumpFlag;
@@ -195,7 +195,7 @@ int finishedList=no, zoomed=yes, translated = yes,
gotToggle = no;
poly *quickList;
- /** if not connected to AXIOM **/
+ /** if not connected to OpenAxiom **/
int viewAloned;
/** for drawing the box **/
@@ -276,7 +276,7 @@ main(void)
/**** link Xwindows to viewports - X10 feature ****/
table = XCreateAssocTable(nbuckets);
- /**** Create AXIOM color map ****/
+ /**** Create OpenAxiom color map ****/
totalShades = 0;
totalColors = XInitSpadFill(dsply,scrn,&colorMap,
&totalHues,&totalSolidShades,
@@ -550,10 +550,10 @@ main(void)
XSetNormalHints(dsply,viewTitleWindow,&titleSizeHints);
if (strlen(viewport->title) < 30)
- XSetStandardProperties(dsply,viewTitleWindow,"AXIOM 3D",viewport->title,
+ XSetStandardProperties(dsply,viewTitleWindow,"OpenAxiom 3D",viewport->title,
None,NULL,0,&titleSizeHints);
else
- XSetStandardProperties(dsply,viewTitleWindow,"AXIOM 3D","3D AXIOM Graph",
+ XSetStandardProperties(dsply,viewTitleWindow,"OpenAxiom 3D","3D OpenAxiom Graph",
None,NULL,0,&titleSizeHints);
viewport->titleWindow = viewTitleWindow;
diff --git a/src/graph/view3D/viewport3d.c b/src/graph/view3D/viewport3d.c
index 23f060cc..3b7482c2 100644
--- a/src/graph/view3D/viewport3d.c
+++ b/src/graph/view3D/viewport3d.c
@@ -683,10 +683,10 @@ makeViewport (void)
XSetNormalHints(dsply,viewTitleWindow,&titleSizeHints);
if (strlen(viewport->title) < 30)
- XSetStandardProperties(dsply,viewTitleWindow,"AXIOM 3D",viewport->title,
+ XSetStandardProperties(dsply,viewTitleWindow,"OpenAxiom 3D",viewport->title,
None,NULL,0,&titleSizeHints);
else
- XSetStandardProperties(dsply,viewTitleWindow,"AXIOM 3D","3D AXIOM Graph",
+ XSetStandardProperties(dsply,viewTitleWindow,"OpenAxiom 3D","3D OpenAxiom Graph",
None,NULL,0,&titleSizeHints);
viewport->titleWindow = viewTitleWindow;