3b1b / 3b1b/manim

DashedVMobject not returning correct output

Aperta
#1,009 3 commenti 0 reazioni 0 assegnatari Vedi su GitHub
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)
```
![image](https://user-images.githubusercontent.com/18668535/80314346-a7f6fa00-87b6-11ea-9f59-b6c7976bffb3.png)

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.