We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f34ce7 commit 0270281Copy full SHA for 0270281
adafruit_turtle.py
@@ -77,15 +77,14 @@ class Vec2D(tuple):
77
for implementing turtle graphics.
78
May be useful for turtle graphics programs also.
79
Derived from tuple, so a vector is a tuple!
80
-
81
- Provides (for a, b vectors, k number):
82
- a+b vector addition
83
- a-b vector subtraction
84
- a*b inner product
85
- k*a and a*k multiplication with scalar
86
- |a| absolute value of a
87
- a.rotate(angle) rotation
88
"""
+ # Provides (for a, b vectors, k number):
+ # a+b vector addition
+ # a-b vector subtraction
+ # a*b inner product
+ # k*a and a*k multiplication with scalar
+ # |a| absolute value of a
+ # a.rotate(angle) rotation
89
def __init__(self, x, y):
90
super().__init__((x, y))
91
0 commit comments