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.PrintStream;
- import vrml.external.*;
- import vrml.external.field.*;
- import vrml.external.exception.*;
- import geometry.VrmlObject;
-
- abstract class Texture extends VrmlObject
- {
- protected boolean repeatS = true;
- protected boolean repeatT = true;
-
- // Null constructor since you cannot create just a straight texture
- protected Texture()
- {
- }
-
- public void writeToFile(PrintStream fp, int indent)
- {
- }
- }
-