000100
000100

Reputation: 1

Turtle will not draw angled lines

Circle cursor picture error I am having problems drawing angle lines with turtle. I can make squares, but star shapes do not show up. Also, the triangular cursor only shows one line, a circle cursor shows 4 horizontal lines. If I switch to "turtle" shape - it just shows 5 dots. See attached pic.

here's a simple star prog

import turtle 

star = turtle.Turtle()

for i in range(50):
    star.forward(50)
    star.right(144)

turtle.done() 

Thanks for any help.

Upvotes: 0

Views: 912

Answers (1)

user1083696
user1083696

Reputation: 97

I had the same problem on openSUSE Leap 43.3 and solved it by installing the correct graphics driver (in my case, xf86-video-intel on a Thinkpad T510).

Upvotes: 1

Related Questions