crazyflow
Scalable drone simulation using JAX.
File Explorer
- devcontainer.linux.json
- devcontainer.wsl2.json
- Dockerfile
- docs.yml
- ruff.yml
- testing.yml
- CODEOWNERS
- copilot-instructions.md
- compile.py
- main.py
- op_count.py
- performance.py
- plot.py
- splat.py
- __init__.py
- control.py
- params.toml
- __init__.py
- core.py
- transform.py
- cf21B_battery-holder.stl
- cf21B_battery.stl
- cf21B_connector-pins.stl
- cf21B_connectors.stl
- cf21B_full.stl
- cf21B_fused.stl
- cf21B_header.stl
- cf21B_motors.stl
- cf21B_no-prop.stl
- cf21B_pcb.stl
- cf21B_prop-guards.stl
- cf21B_PropL.stl
- cf21B_PropR.stl
- cf_led-diffuser.stl
- cf2x_battery-holder.stl
- cf2x_battery.stl
- cf2x_connector-pins.stl
- cf2x_connectors.stl
- cf2x_motor-holder.stl
- cf2x_pcb.stl
- cf2xL_fused.stl
- cf2xL_motors.stl
- cf2xL_PropL.stl
- cf2xL_PropR.stl
- cf2xP_fused.stl
- cf2xP_motors.stl
- cf2xP_PropL.stl
- cf2xP_PropR.stl
- cf2xT_fused.stl
- cf2xT_motors.stl
- cf_led-diffuser.stl
- __init__.py
- cf21B_500.xml
- cf2x_L250.xml
- cf2x_P250.xml
- cf2x_T350.xml
- params.toml
- __init__.py
- dynamics.py
- params.toml
- __init__.py
- dynamics.py
- params.toml
- __init__.py
- dynamics.py
- params.toml
- __init__.py
- dynamics.py
- params.toml
- __init__.py
- data_utils.py
- identification.py
- rotation.py
- __init__.py
- core.py
- symbols.py
- __init__.py
- drone_env.py
- figure_8_env.py
- landing_env.py
- norm_actions_wrapper.py
- reach_pos_env.py
- reach_vel_env.py
- __init__.py
- depth.py
- splat.py
- __init__.py
- data.py
- functional.py
- integration.py
- pipeline.py
- sharding.py
- sim.py
- splat.py
- visualize.py
- __init__.py
- _typing.py
- exception.py
- scene.xml
- utils.py
- index.md
- index.md
- installation.md
- quick-start.md
- cameras.gif
- contact_box.png
- contact_sphere.png
- led_decks.png
- logo.png
- logo.svg
- logo_white.svg
- performance.png
- mathjax.js
- showcase.js
- extra.css
- batching.md
- controllers.md
- index.md
- integral-errors.md
- jit.md
- mellinger.md
- parametrize.md
- batching.md
- dynamics-functions.md
- index.md
- parametrize.md
- symbolic.md
- system-identification.md
- functional-api.md
- gymnasium-envs.md
- index.md
- mujoco.md
- oo-api.md
- pipelines.md
- sharding.md
- sim-overview.md
- splats.md
- visualization.md
- world-axis.md
- cite.md
- gen_ref_pages.py
- index.md
- contacts.py
- crash.py
- attitude.py
- change_pos.py
- force_torque.py
- hover.py
- sampling.py
- spiral.py
- figure8.py
- gymnasium_env.py
- cache.py
- gradient.py
- sharding.py
- action_delay.py
- disturbance.py
- estimation.py
- randomize.py
- cam_config.py
- cameras.py
- led_deck.py
- raycasting.py
- render.py
- splat_camera.py
- splat_depth.py
- splat_gradients.py
- splat_viewer.py
- symbolic.py
- __init__.py
- test_identification_pipeline.py
- __init__.py
- test_disturbance.py
- test_envs.py
- test_examples.py
- test_interfaces.py
- test_models.py
- test_reset.py
- __init__.py
- test_core.py
- test_mellinger.py
- test_transform.py
- __init__.py
- test_dynamics.py
- test_parametrization.py
- test_preprocessing.py
- test_rotation.py
- __init__.py
- test_functional.py
- test_gradients.py
- test_pipeline.py
- test_plugins.py
- test_render.py
- test_sensors.py
- test_sharding.py
- test_sim.py
- test_splat.py
- test_utils.py
- test_visualizations.py
- conftest.py
- .gitattributes
- .gitignore
- CITATION.cff
- LICENSE
- pixi.lock
- properdocs.yml
- pyproject.toml
- README.md
- SKILL.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pixi
View Details ▼
pixi
Developer Workflow and Environment Management for projects.
pixi init {{path/to/project}}
Initialize a new project:
pixi add {{dependency1 dependency2 ...}}
Add project dependencies:
pixi shell
Start a pixi shell in the project environment:
