#VRML V2.0 utf8


NavigationInfo {
	type "NONE"
}


Viewpoint {
	position 0 0 2.5
	orientation 0 0 1 0.785
	fieldOfView 2.356	# 3/4 pi
}


DEF bb Billboard {
	axisOfRotation 0 0 0
	children [
		Shape {
			appearance Appearance {
				texture ImageTexture {
					url "images/grid.gif"
				}
			}
			geometry IndexedFaceSet {
				coord Coordinate {
					point [
						 1,  1, 0
						-1,  1, 0
						-1, -1, 0
						 1, -1, 0
					]
				}
				coordIndex [
					0, 1, 2, 3, 0, -1
				]
				texCoord TextureCoordinate {
					point [
						1, 1
						0, 1
						0, 0
						1, 0
					]
				}
			}
		}
	]
}


Transform {
	translation  3 0 0
	children USE bb
}


Transform {
	translation -3 0 0
	children USE bb
}
