% =========================================================================
% ------------------------ The animation info -----------------------------
% =========================================================================

ANIMATION:

	Version = 1
	MinVer = 1
	NumColours = 4
	NumObjects= 1
	NumObjectInstances = 1
	Title = "Testing Animation"
	Creator = "M. George"
	Date = "February 1994"


% =========================================================================
% -------------------------- The colours used -----------------------------
% =========================================================================

BACKCOLOUR:

	Colour = (0, 0, 0)


COLOURS:

#Pink:
	Colour = (255, 0, 255)
#Cyan:
	Colour = (0, 255, 255)
#Yellow:
	Colour = (255, 255, 0)
#White:
	Colour = (255, 255, 255)


% =========================================================================
% ----------------------- The direction of light --------------------------
% =========================================================================

LIGHTSOURCE:

	Vector = (-5173, 0, 5173)
	NumInstructions = 1

_Instructions:

        STOP


% =========================================================================
% --------------------- The viewers initial position ----------------------
% =========================================================================

VIEWER:

	Position = (0, 0, -300)
	Orientation = (0, 0, 0)
	NumInstructions = 1

_Instructions:

	STOP
 

% =========================================================================
% -------------------------- The object protos ----------------------------
% =========================================================================

PROTOS:

#Tile:				% The only object in this demo.
	NumVertices = 8
	NumFaces = 6

_Vertices:
        Coords = (-50, 50, -50)
	Coords = (50, 50, -50)
	Coords = (50, -50, -50)
	Coords = (-50, -50, -50)
        Coords = (-50, 50, 50)
	Coords = (50, 50, 50)
	Coords = (50, -50, 50)
	Coords = (-50, -50, 50)

_Faces:	
	Colour = #Pink
	NumEdges = 4
        Edges = (0, 1, 2, 3, 0)

	Colour = #Cyan
	NumEdges = 4
        Edges = (1, 5, 6, 2, 1)

	Colour = #White
	NumEdges = 4
	Edges = (0, 4, 5, 1, 0)

	Colour = #White
	NumEdges = 4
	Edges = (7, 3, 2, 6, 7)

	Colour = #Cyan
	NumEdges = 4
	Edges = (0, 3, 7, 4, 0)

	Colour = #Pink
	NumEdges = 4
	Edges = (4, 7, 6, 5, 4)


% =========================================================================
% ------------- The object instances and their movement -------------------
% =========================================================================

OBJECTS:

	Proto = #Tile
	Position = (0, 0, 400)
	Orientation = (00, 0, 0)
	Scale = (8192, 8192, 8192)
	NumInstructions = 19

_Instructions:

	COUNTER=36
	  TRANSLATE=(-10, 0, 0)
	LOOP

	COUNTER=72
	  TRANSLATE=(10, 0, 0)
	LOOP

	COUNTER=36
	  TRANSLATE=(-10, 0, 0)
	LOOP

	COUNTER=24
	  TRANSLATE=(0, -10, 0)
	LOOP

	COUNTER=48
	  TRANSLATE=(0, 10, 0)
	LOOP

	COUNTER=24
	  TRANSLATE=(0, -10, 0)
	LOOP

	GOTO=0
