Neodroid  0.2.0
Machine Learning Environment Prototyping Tool
IActuator.cs
Go to the documentation of this file.
2 
3 namespace droid.Runtime.Interfaces {
4  public interface IActuator : IRegisterable {
5  Space1 MotionSpace { get; set; }
6  float Sample();
7  float GetEnergySpend();
8  void ApplyMotion(IMotion motion);
9  void EnvironmentReset();
10  }
11 }