BowlerKernel
DeltaJointAngles.java
Go to the documentation of this file.
1 package com.neuronrobotics.replicator.driver.delta;
2 
3 // TODO: Auto-generated Javadoc
7 public class DeltaJointAngles {
8 
10  private double theta1, theta2, theta3;
11 
19  public DeltaJointAngles(double theta1, double theta2, double theta3){
21  setTheta2(theta2);
22  setTheta3(theta3);
23  }
24 
30  private void setTheta1(double theta1) {
31  this.theta1 = theta1;
32  }
33 
39  public double getTheta1() {
40  return theta1;
41  }
42 
48  private void setTheta2(double theta2) {
49  this.theta2 = theta2;
50  }
51 
57  public double getTheta2() {
58  return theta2;
59  }
60 
66  private void setTheta3(double theta3) {
67  this.theta3 = theta3;
68  }
69 
75  public double getTheta3() {
76  return theta3;
77  }
78 }
DeltaJointAngles(double theta1, double theta2, double theta3)