2-DOF arm with collision geometry for testing collision-aware IK.
Structure:
- base_link (with collision sphere at origin)
- shoulder (revolute, Y-axis) - lifts arm in XZ plane
- upper_arm (0.3m capsule along X)
- elbow (revolute, Y-axis) - bends forearm
- forearm (0.25m capsule along X)
- tip_joint (fixed)
- tip
- tip_joint (fixed)
- forearm (0.25m capsule along X)
- elbow (revolute, Y-axis) - bends forearm
- upper_arm (0.3m capsule along X)
- shoulder (revolute, Y-axis) - lifts arm in XZ plane
When the arm folds back (shoulder back + elbow bent), forearm can collide with base. Total reach: 0.55m from shoulder along X axis.
Summary
Functions
Returns a child specification for starting this robot under a supervisor.
Returns the optimised robot representation.
Starts the robot's supervision tree.
Functions
@spec child_spec(Keyword.t()) :: Supervisor.child_spec()
Returns a child specification for starting this robot under a supervisor.
@spec robot() :: BB.Robot.t()
Returns the optimised robot representation.
This struct is built at compile-time from the DSL definition and contains:
- All physical values converted to SI base units (floats)
- Flat maps for O(1) lookup of links, joints, sensors, and actuators
- Pre-computed topology metadata for efficient traversal
Examples
robot = Elixir.BB.IK.TestRobots.CollisionArm.robot()
link = BB.Robot.get_link(robot, :base_link)
joint = BB.Robot.get_joint(robot, :shoulder)
@spec start_link(Keyword.t()) :: Supervisor.on_start()
Starts the robot's supervision tree.
Options
All options are passed through to sensor and actuator child processes.