Files
PythonRobotics/ruff.toml
Atsushi Sakai cb08c39a93 Add Normal vector estimation (#781)
* add normal vector calculation routine.

* add normal vector calculation routine.

* add normal vector estimation

* fix unittests in not matplotlib frontend

* fix lint ci

* add ransac based normal distribution estimation

* add normal_vector_estimation_main.rst

* normal_vector_estimation_main.rst を更新

* update normal_vector_estimation_main.rst

* update normal_vector_estimation_main.rst

* normal_vector_estimation_main.rst

* normal_vector_estimation_main.rst を更新

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst

* add normal_vector_estimation_main.rst
2023-03-11 17:54:18 +09:00

18 lines
282 B
TOML

line-length = 88
select = ["F", "E", "W", "UP"]
ignore = ["E501", "E741", "E402"]
exclude = [
]
# Assume Python 3.11
target-version = "py311"
[per-file-ignores]
[mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[pydocstyle]
convention = "numpy"