开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 45

张三/PythonRobotics

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (50)
标签 (1)
master
dependabot/pip/requirements/ruff-0.0.286
gh-pages
issue847
issue696
dependabot/pip/requirements/scipy-1.11.0
dependabot/pip/requirements/numpy-1.25.0
dependabot/pip/requirements/ruff-0.0.265
dependabot/pip/requirements/pytest-7.3.1
dependabot/pip/requirements/ruff-0.0.260
dependabot/pip/requirements/ruff-0.0.255
dependabot/pip/requirements/pytest-xdist-3.2.1
normal_vector_estimation
dependabot/pip/requirements/flake8-6.0.0
use_flake8_for_whole
support_python3_11
issue_769
dependabot/pip/requirements/mypy-0.990
dependabot/pip/requirements/scipy-1.9.2
issue_713
v1.0
master
分支 (50)
标签 (1)
master
dependabot/pip/requirements/ruff-0.0.286
gh-pages
issue847
issue696
dependabot/pip/requirements/scipy-1.11.0
dependabot/pip/requirements/numpy-1.25.0
dependabot/pip/requirements/ruff-0.0.265
dependabot/pip/requirements/pytest-7.3.1
dependabot/pip/requirements/ruff-0.0.260
dependabot/pip/requirements/ruff-0.0.255
dependabot/pip/requirements/pytest-xdist-3.2.1
normal_vector_estimation
dependabot/pip/requirements/flake8-6.0.0
use_flake8_for_whole
support_python3_11
issue_769
dependabot/pip/requirements/mypy-0.990
dependabot/pip/requirements/scipy-1.9.2
issue_713
v1.0
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (50)
标签 (1)
master
dependabot/pip/requirements/ruff-0.0.286
gh-pages
issue847
issue696
dependabot/pip/requirements/scipy-1.11.0
dependabot/pip/requirements/numpy-1.25.0
dependabot/pip/requirements/ruff-0.0.265
dependabot/pip/requirements/pytest-7.3.1
dependabot/pip/requirements/ruff-0.0.260
dependabot/pip/requirements/ruff-0.0.255
dependabot/pip/requirements/pytest-xdist-3.2.1
normal_vector_estimation
dependabot/pip/requirements/flake8-6.0.0
use_flake8_for_whole
support_python3_11
issue_769
dependabot/pip/requirements/mypy-0.990
dependabot/pip/requirements/scipy-1.9.2
issue_713
v1.0
conf.py 5.58 KB
一键复制 编辑 原始数据 按行查看 历史
Faizan Alam 提交于 2023年05月28日 16:22 +08:00 . Add dark mode feature in documentation (#842)
#
# Configuration file for the Sphinx documentation builder.
#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
# http://www.sphinx-doc.org/en/master/config
# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
sys.path.insert(0, os.path.abspath('../'))
# -- Project information -----------------------------------------------------
project = 'PythonRobotics'
copyright = '2018-2021, Atsushi Sakai'
author = 'Atsushi Sakai'
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = ''
# -- General configuration ---------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'matplotlib.sphinxext.plot_directive',
'sphinx.ext.autodoc',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
'sphinx.ext.imgconverter',
'IPython.sphinxext.ipython_console_highlighting',
'sphinx_copybutton',
'sphinx_rtd_dark_mode',
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '_main.rst'
# The master toctree document.
master_doc = 'index'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = "en"
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
# Fix for read the docs
on_rtd = os.environ.get('READTHEDOCS') == 'True'
if on_rtd:
html_theme = 'default'
else:
html_theme = 'sphinx_rtd_light_them'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
html_logo = '../icon.png'
html_theme_options = {
'display_version': False,
}
# replace "view page source" with "edit on github" in Read The Docs theme
# * https://github.com/readthedocs/sphinx_rtd_theme/issues/529
html_context = {
'display_github': True,
'github_user': 'AtsushiSakai',
'github_repo': 'PythonRobotics',
'github_version': 'master',
"conf_py_path": "/docs/",
"source_suffix": source_suffix,
}
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_css_files = ['custom.css']
# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# The default sidebars (for documents that don't match any pattern) are
# defined by theme itself. Builtin themes are using these templates by
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
# 'searchbox.html']``.
#
# html_sidebars = {}
# -- Options for HTMLHelp output ---------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'PythonRoboticsdoc'
# -- Options for LaTeX output ------------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'PythonRobotics.tex', 'PythonRobotics Documentation',
'Atsushi Sakai', 'manual'),
]
# -- Options for manual page output ------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'pythonrobotics', 'PythonRobotics Documentation',
[author], 1)
]
# -- Options for Texinfo output ----------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'PythonRobotics', 'PythonRobotics Documentation',
author, 'PythonRobotics', 'One line description of project.',
'Miscellaneous'),
]
# -- Extension configuration -------------------------------------------------
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

PythonRobotics 是用 Python 实现的机器人算法案例集合,该库包括了机器人设计中常用的定位算法、测绘算法、路径规划算法、SLAM、路径跟踪算法
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ZHthree/PythonRobotics.git
git@gitee.com:ZHthree/PythonRobotics.git
ZHthree
PythonRobotics
PythonRobotics
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /