home *** CD-ROM | disk | FTP | other *** search
- // 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)
- {
- }
- }
-