15 lines
259 B
Python
15 lines
259 B
Python
"""
|
|
Some utilities for working with Vector instances.
|
|
"""
|
|
|
|
from vectorlib.vector import Vector
|
|
|
|
|
|
def print_vectors(veclist):
|
|
"""Print a list of vectors.
|
|
|
|
*veclist* must be a list of Vector instances.
|
|
"""
|
|
for vec in veclist:
|
|
print(vec)
|