RLPark 1.0.0
Reinforcement Learning Framework in Java

WheelSpaceAction.java

Go to the documentation of this file.
00001 
00004 package rlpark.plugin.critterbot.actions;
00005 
00006 public class WheelSpaceAction extends CritterbotAction {
00007   private static final long serialVersionUID = 8800756883418406775L;
00008 
00009   public WheelSpaceAction(double motor0, double motor1, double motor2) {
00010     super(MotorMode.WHEEL_SPACE, motor0, motor1, motor2);
00011   }
00012 
00013   public WheelSpaceAction(double[] actions) {
00014     super(MotorMode.WHEEL_SPACE, actions);
00015   }
00016 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark