2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2009-2023 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
#
|
2022-02-11 09:07:11 +11:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2013-02-24 23:43:40 +00:00
|
|
|
|
2013-12-30 23:26:31 +09:00
|
|
|
"""
|
2014-09-18 15:44:53 +09:00
|
|
|
This module provides data types of view map components (0D and 1D
|
|
|
|
|
elements), base classes for defining line stylization rules
|
2017-06-14 14:41:07 -04:00
|
|
|
(predicates, functions, chaining iterators, and stroke shaders),
|
|
|
|
|
as well as helper functions for style module writing.
|
2013-12-30 23:26:31 +09:00
|
|
|
"""
|
|
|
|
|
|
2014-09-18 15:44:53 +09:00
|
|
|
|
2013-11-24 00:28:01 +00:00
|
|
|
# module members
|
2013-12-05 22:26:37 +00:00
|
|
|
from . import chainingiterators, functions, predicates, shaders, types, utils
|