home *** CD-ROM | disk | FTP | other *** search
- // VRML Generator
- // Copyright Justin Couch 1996
- //
- // From Chapter 13 Late Night VRML 2.0 and Java
- //
- // VRML base object definition
-
- package geometry;
-
- import java.lang.Cloneable;
- import java.io.PrintStream;
- import vrml.external.Node;
-
- public abstract class VrmlObject implements Cloneable
- {
- protected boolean have_browser = false;
-
- public String name;
- public Node node;
-
- public abstract void writeToFile(PrintStream fp, int indent);
-
- public String toString()
- {
- return(name);
- }
- }
-
-