DashedVMobject not returning correct output
- Lingua principale
- Python
- Stelle
- 93.8k
- Fork
- 7.7k
- Metriche di merge delle PR
- Metriche PR in attesa
Descrizione
When trying to draw a dashed line with custom length (width), it returns the continous version of the line.
```python
projection_line = DashedVMobject(
Line(point_a, point_b).set_width(100).set_color(YELLOW)
)
```
Also tried:
```python
projection_line = DashedVMobject(
Line(point_a, point_b).set_width(100)
).set_color(YELLOW)
```
And:
```python
projection_line = DashedVMobject(
Line(point_a, point_b)
).set_color(YELLOW).set_width(100)
```

Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.