Skip to content

Commit

Permalink
unify the name in aip_urdf_compiler to be URDF compile
Browse files Browse the repository at this point in the history
Signed-off-by: YuxuanLiuTier4Desktop <[email protected]>
  • Loading branch information
Owen-Liuyuxuan committed Dec 26, 2024
1 parent 1c21d10 commit 91ff326
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aip_urdf_compiler/cmake/aip_cmake_urdf_compile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ macro(aip_cmake_urdf_compile)
# Set the correct paths
find_package(PythonInterp REQUIRED) # cspell: ignore Interp
set(aip_urdf_compiler_BASE_DIR "${aip_urdf_compiler_DIR}/../")
set(PYTHON_SCRIPT "${aip_urdf_compiler_BASE_DIR}/scripts/compile_xacro.py")
set(PYTHON_SCRIPT "${aip_urdf_compiler_BASE_DIR}/scripts/compile_urdf.py")
set(PYTHON_TEMPLATE_DIRECTORY "${aip_urdf_compiler_BASE_DIR}/templates")
set(PYTHON_CALIBRATION_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/config")
set(PYTHON_XACRO_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/urdf")
Expand Down
4 changes: 2 additions & 2 deletions aip_urdf_compiler/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class LinkType(enum.Enum):
- Creates build targets
- Ensures URDF regeneration on each build

3. **compile_xacro.py**
3. **compile_urdf.py**
- Configuration parser
- Transform processor
- URDF generator
Expand All @@ -105,7 +105,7 @@ class LinkType(enum.Enum):

## Adding New Sensors

1. Add sensor descriptions (xacro files) in either:
1. Add sensor descriptions (xacro module files) in either:

- Your target package
- `common_sensor_description` package
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/python3
"""
XML/Xacro Difference Analyzer.
URDF Model Difference Analyzer.
This script analyzes and compares two XML/Xacro files, specifically designed for ROS URDF/Xacro files
containing sensor configurations. It identifies and reports differences in included files, sensor configurations,
Expand Down

0 comments on commit 91ff326

Please sign in to comment.