home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Late Night VRML 2.0 with Java CD-ROM
/
code.zip
/
Ch12
/
geometry
/
Geometry.bak
< prev
next >
Wrap
Text File
|
1996-12-31
|
497b
|
29 lines
// VRML Generator
// Copyright Justin Couch 1996
//
// Chapter 13: Late Night VRML 2.0 and Java
//
// Shape class
package geometry;
import java.io.*;
import java.awt.*;
import vrml.external.*;
import vrml.external.field.*;
import vrml.external.exception.*;
import geometry.VrmlObject;
abstract class Geometry extends VrmlObject
{
// constructor builds a copy of itself and is added to the scene
// graph.
public Geometry()
{
}
public void writeToFile(PrintStream fp, int indent)
{
}
}