Skip to content

Commit

Permalink
Put classes into separate package
Browse files Browse the repository at this point in the history
  • Loading branch information
Roshan Raj committed Oct 8, 2018
1 parent bf8c021 commit 89a6e3e
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/motionProfileGenerator/
Binary file removed bin/Config.class
Binary file not shown.
Binary file removed bin/PivotProfileGenerator.class
Binary file not shown.
Binary file removed bin/Segment.class
Binary file not shown.
Binary file removed bin/StraightProfileGenerator.class
Binary file not shown.
Binary file removed bin/Trajectory.class
Binary file not shown.
Binary file removed bin/WheelTrajectory.class
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package motionProfileGenerator.ftc.tools;


public class Config {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package motionProfileGenerator.ftc.tools;

public class PivotProfileGenerator {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package motionProfileGenerator.ftc.tools;

public class Segment {
double time, forward, horizontal, position, velocity, acceleration, heading;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package motionProfileGenerator.ftc.tools;
public class StraightProfileGenerator {

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package motionProfileGenerator.ftc.tools;

/**
* <p>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package motionProfileGenerator.ftc.tools;

/**
* Stores two trajectories for left and right side of the drivetrain
Expand Down

0 comments on commit 89a6e3e

Please sign in to comment.