15 lines
439 B
Python
15 lines
439 B
Python
"""This submodule contains additional tools for working with paths composed of
|
|
Line and CubicBezier objects. QuadraticBezier and Arc objects are only
|
|
partially supported."""
|
|
|
|
# External dependencies:
|
|
from __future__ import division, absolute_import, print_function
|
|
|
|
# Internal dependencies
|
|
from .path import Path, Line, QuadraticBezier, CubicBezier, Arc
|
|
|
|
|
|
# Misc#########################################################################
|
|
|
|
|