- Added project configuration (config.json) with robot model path, environment parameters - Created 9-DOF robotic arm URDF model (models/manual_robot.urdf) - Established modular code architecture with empty source files ready for implementation - Configured Python dependencies (pybullet, PyKDL, urdf_parser_py) - Added comprehensive project documentation (CLAUDE.md) - Created .gitignore for Python project 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
63 lines
541 B
Plaintext
63 lines
541 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv/
|
|
.env/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# PyCharm
|
|
.idea/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# PyBullet logs
|
|
*.log
|
|
|
|
# Simulation outputs
|
|
simulation_output/
|
|
results/
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp |