Added trajectory planner for the arm.

This computes the velocity as a function of path distance.
I'm not quite certain how to verify this other than the fact that I've
plotted it and the python code, and they produce the same answers.

Change-Id: Ibdbdfc78eb0c142c7e6a30047afa099b73964811
diff --git a/y2018/control_loops/superstructure/arm/BUILD b/y2018/control_loops/superstructure/arm/BUILD
index cbb443d..dfdaef4 100644
--- a/y2018/control_loops/superstructure/arm/BUILD
+++ b/y2018/control_loops/superstructure/arm/BUILD
@@ -6,7 +6,10 @@
     hdrs = [
         "trajectory.h",
     ],
-    deps = ["//third_party/eigen"],
+    deps = [
+        ":dynamics",
+        "//third_party/eigen",
+    ],
 )
 
 cc_test(