pybullet-fleet 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,57 @@
1
+ """
2
+ pybullet_fleet package
3
+ General-purpose PyBullet simulation library for multi-robot fleets
4
+ """
5
+
6
+ # Type definitions
7
+ from pybullet_fleet.types import (
8
+ ActionStatus,
9
+ DifferentialPhase,
10
+ MotionMode,
11
+ MovementDirection,
12
+ SpatialHashCellSizeMode,
13
+ )
14
+
15
+ # Geometry primitives
16
+ from pybullet_fleet.geometry import Path, Pose
17
+
18
+ # Robot/Agent management
19
+ from pybullet_fleet.agent import Agent, AgentSpawnParams
20
+ from pybullet_fleet.agent_manager import AgentManager, GridSpawnParams
21
+
22
+ # Core simulation classes
23
+ from pybullet_fleet.core_simulation import (
24
+ MultiRobotSimulationCore,
25
+ SimulationParams,
26
+ )
27
+
28
+ # Base classes
29
+ from pybullet_fleet.sim_object import SimObject
30
+
31
+ # Utilities
32
+ from pybullet_fleet.tools import grid_to_world, world_to_grid, normalize_vector_param
33
+
34
+ __all__ = [
35
+ # Type definitions
36
+ "ActionStatus",
37
+ "DifferentialPhase",
38
+ "MotionMode",
39
+ "MovementDirection",
40
+ # Geometry
41
+ "Pose",
42
+ "Path",
43
+ # Core simulation
44
+ "MultiRobotSimulationCore",
45
+ "SimulationParams",
46
+ "SpatialHashCellSizeMode",
47
+ "SimObject",
48
+ # Agent management
49
+ "Agent",
50
+ "AgentSpawnParams",
51
+ "AgentManager",
52
+ "GridSpawnParams",
53
+ # Utilities
54
+ "grid_to_world",
55
+ "world_to_grid",
56
+ "normalize_vector_param",
57
+ ]