Source code for brom_drake.robots.utils

"""
Description:
    This file contains a set of helpful utilities that can be used to help with the
    development of the robot models.
"""

from enum import IntEnum
from pathlib import Path
from typing import List
import xml.etree.ElementTree as ET

[docs] class BaseLinkSearchApproach(IntEnum): kIncludesBaseInName = 1 kFirstLinkFound = 2