social_learning.DumbAgent.getRotationAndVelocity C# (CSharp) Method

getRotationAndVelocity() protected method

protected getRotationAndVelocity ( double sensors ) : float[]
sensors double
return float[]
        protected override float[] getRotationAndVelocity(double[] sensors)
        {
            return new float[] { (float)random.Next(45) - 20f, (float)random.Next(2) };
        }