File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 41
41
42
42
class Tags (object ):
43
43
SMOOTH = 'smooth'
44
+ """
45
+ The `SMOOTH` tag means waypoints are close enough together that we can
46
+ approximate derivatives at the waypoints using divided differences. i.e.
47
+ we can safely fit a spline without collision checking.
48
+ """
49
+
44
50
CONSTRAINED = 'constrained'
51
+ """
52
+ The `CONSTRAINED` tag means that the geometric path described by these
53
+ waypoints respects a constraint. This means that the path cannot be
54
+ geometrically altered arbitrarily, at the risk of violating the original
55
+ constraint, it should only be changed in timing.
56
+ """
57
+
45
58
PLANNER = 'planner'
59
+ """
60
+ The name of the planner used to generate a trajectory.
61
+ """
62
+
46
63
METHOD = 'planning_method'
64
+ """
65
+ The type of planning call used to generate a trajectory.
66
+ """
67
+
47
68
PLAN_TIME = 'planning_time'
69
+ """
70
+ The amount of time that was spent by a planner finding a solution.
71
+ """
72
+
48
73
POSTPROCESS_TIME = 'postprocess_time'
74
+ """
75
+ The amount of time that was spent modifying the trajectory for execution.
76
+ """
77
+
49
78
EXECUTION_TIME = 'execution_time'
79
+ """
80
+ The amount of time that was spent actually running a trajectory.
81
+ """
50
82
51
83
52
84
class MetaPlanningError (PlanningError ):
You can’t perform that action at this time.
0 commit comments