def __init__(self):
self.p = ui.Path()
# Stores all arcs, curves, and lines in the path. They are stored as
# [start_point, function_args, end_point]
self.components = []
# Keeps track of the current position internally. Only updated manually
# and is therefore used to track old values
self._position = (0, 0)
# Copy docstring
self.__doc__ == ui.Path.__doc__
# Wrapper methods
评论列表
文章目录