Skip to content

Commit

Permalink
[SymForce] Fix links from generated to symbolic classes
Browse files Browse the repository at this point in the history
Topic: sym-docs-gen-links
GitOrigin-RevId: bfddc6e09b33a2c145ce8c8b83545e7dbe01f1f4
  • Loading branch information
aaron-skydio committed May 31, 2023
1 parent c3d2f3c commit cce64be
Show file tree
Hide file tree
Showing 26 changed files with 28 additions and 30 deletions.
2 changes: 1 addition & 1 deletion gen/cpp/sym/atan_camera_cal.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gen/cpp/sym/double_sphere_camera_cal.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gen/cpp/sym/equirectangular_camera_cal.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/cpp/sym/linear_camera_cal.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions gen/cpp/sym/polynomial_camera_cal.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/cpp/sym/pose2.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/cpp/sym/pose3.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/cpp/sym/rot2.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/cpp/sym/rot3.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions gen/cpp/sym/spherical_camera_cal.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/cpp/sym/unit3.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/atan_camera_cal.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/double_sphere_camera_cal.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/equirectangular_camera_cal.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/linear_camera_cal.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/polynomial_camera_cal.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/pose2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/pose3.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/rot2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/rot3.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/spherical_camera_cal.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/sym/unit3.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace sym {

{% if doc %}
/**
* Autogenerated C++ implementation of {{ cls }}.
* Autogenerated C++ implementation of `{{ cls.__module__ }}.{{ cls.__qualname__ }}`.
*
{% for line in doc.split('\n') %}
*{{ ' {}'.format(line).rstrip() }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace sym {

{% if doc %}
/**
* Autogenerated C++ implementation of {{ cls }}.
* Autogenerated C++ implementation of `{{ cls.__module__ }}.{{ cls.__qualname__ }}`.
*
{% for line in doc.split('\n') %}
*{{ ' {}'.format(line).rstrip() }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ from .ops import {{ camelcase_to_snakecase(cls.__name__) }} as ops
class {{ cls.__name__ }}(object):
{% if doc %}
"""
Autogenerated Python implementation of {{ cls }}.
Autogenerated Python implementation of :py:class:`{{ cls.__module__ }}.{{ cls.__qualname__ }}`.

{% for line in doc.split('\n') %}
{{ line.rstrip() }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from .ops import {{ camelcase_to_snakecase(cls.__name__) }} as ops
class {{ cls.__name__ }}(object):
{% if doc %}
"""
Autogenerated Python implementation of {{ cls }}.
Autogenerated Python implementation of :py:class:`{{ cls.__module__ }}.{{ cls.__qualname__ }}`.

{% for line in doc.split('\n') %}
{{ line.rstrip() }}
Expand Down

0 comments on commit cce64be

Please sign in to comment.