#VRML V2.0 utf8 

Group {
  children   [
	      DEF jenny_Xform Transform {
		  children    [ 
		       DEF jenny_TOUCH TouchSensor {
		      },
		      Shape {
		      appearance        Appearance {
			  material        Material {
			      ambientIntensity      0.25
			      diffuseColor  0 1 0
			      specularColor 0.533333 0.533333 0.533333
			      emissiveColor 0 0 0
			      shininess     0.933333
			       transparency  0
			  }
		       }
		      geometry Cone {
		      }
		  }
		]	       
	     translation 0 0 0
             scale 1.2 3.5 2
          },
	  DEF jenny_TIME TimeSensor {
		  cycleInterval 10
	  },
		DEF jenny_POS PositionInterpolator {
			keys [ 0.0, 1.0 ]
			values [ 0 0 0, 70 1 -50 ]
	}
]
    ROUTE jenny_TOUCH.touchTime TO jenny_TIME.startTime
    ROUTE jenny_TIME.fraction TO jenny_POS.set_fraction
    ROUTE jenny_POS.outValue TO jenny_Xform.translation   
}