ManimCommunity / ManimCommunity/manim
tip_width and tip_height seems to have no effect on the tip size
@WillSoltas is already working on this.
Since Mar 23, 2022.
- Dominant language
- Python
- Stars
- 40.9k
- Forks
- 3.1k
- Avg merge
- 3d 12h
- Merged PRs (30d)
- 25
Description
## Description of bug / unexpected behavior
"tip_width" and "tip_height" seems to have no effect on the tip size.
## Expected behavior
Size of the tip should be adjustable with "tip_width" and "tip_height".
## How to reproduce the issue
```py
plane = Axes(
x_range = (0, 23),
y_range = (0, 5),
axis_config={"include_numbers": True, "include_tip": True},
x_axis_config={"tip_width":2, "tip_height":5}
)
plane.center()
self.add(plane)
```
=> "tip_width" and "tip_height" have no effect, while include_tip has an effect.
## System specifications
- OSWindows 10
- Manim v0.14.0
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.