Table of Contents:
from enum import IntEnum [docs]class TrajectoryPlanMode(IntEnum): STRAIGHT = 1 ARC = 2 CIRCLE = 3 BSPLINE = 4