BowlerKernel
UserManagedPrintBedData.java
Go to the documentation of this file.
1 package com.neuronrobotics.bowlerstudio.creature;
2 
3 import java.util.HashMap;
4 
5 import com.neuronrobotics.sdk.addons.kinematics.math.TransformNR;
6 
7 public class UserManagedPrintBedData {
8  public HashMap<String,TransformNR> locations;
9  public double bedX;
10  public double bedY;
11  public void init() {
12  locations=new HashMap<String, TransformNR>();
13  bedX=240;
14  bedY=200;
15  }
16 
17 }