nodebpy 520.10.0__tar.gz → 520.11.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nodebpy-520.10.0 → nodebpy-520.11.0}/PKG-INFO +1 -1
- {nodebpy-520.10.0 → nodebpy-520.11.0}/pyproject.toml +1 -1
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/__init__.py +6 -6
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/color.py +2 -2
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/filter.py +5 -5
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/__init__.py +4 -4
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/color.py +2 -2
- {nodebpy-520.10.0 → nodebpy-520.11.0}/README.md +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/assets/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/assets/__main__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/assets/_codegen.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/_registry.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/_utils.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/accessor.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/arrange.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/asset.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/items.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/mixins.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/node.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/socket.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/tree.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/codegen.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/diagram.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/web_render.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/graph.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/ordering.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/ranking.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/realize.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/stacking.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/structs.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/sugiyama.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/x_coords.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/y_coords.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/config.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/utils.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/_mixins.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/assets.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/converter.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/distort.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/group.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/input.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/interface.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/manual.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/matte.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/output.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/vector.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/__init__.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/assets.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/attribute.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/color.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/converter.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/geometry.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/grid.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/group.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/groups.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/input.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/interface.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/manual.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/output.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/texture.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/utilities.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/vector.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/zone.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/assets.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/converter.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/grid.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/group.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/input.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/manual.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/output.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/script.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/shader.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/texture.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/vector.py +0 -0
- {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/types.py +0 -0
|
@@ -99,13 +99,13 @@ from ..geometry.vector import (
|
|
|
99
99
|
)
|
|
100
100
|
from .color import (
|
|
101
101
|
AlphaOver,
|
|
102
|
-
|
|
102
|
+
BrightnessContrast,
|
|
103
103
|
ColorBalance,
|
|
104
104
|
ColorCorrection,
|
|
105
105
|
DepthCombine,
|
|
106
106
|
Exposure,
|
|
107
107
|
HueCorrect,
|
|
108
|
-
|
|
108
|
+
HueSaturationValue,
|
|
109
109
|
InvertColor,
|
|
110
110
|
Posterize,
|
|
111
111
|
RGBCurves,
|
|
@@ -120,7 +120,7 @@ from .filter import (
|
|
|
120
120
|
Defocus,
|
|
121
121
|
Denoise,
|
|
122
122
|
Despeckle,
|
|
123
|
-
|
|
123
|
+
DilateErode,
|
|
124
124
|
DirectionalBlur,
|
|
125
125
|
Filter,
|
|
126
126
|
Glare,
|
|
@@ -241,7 +241,7 @@ __all__ = (
|
|
|
241
241
|
"Boolean",
|
|
242
242
|
"BoxMask",
|
|
243
243
|
"BrickTexture",
|
|
244
|
-
"
|
|
244
|
+
"BrightnessContrast",
|
|
245
245
|
"CameraInfo",
|
|
246
246
|
"ChannelKey",
|
|
247
247
|
"CheckerTexture",
|
|
@@ -270,7 +270,7 @@ __all__ = (
|
|
|
270
270
|
"DepthCombine",
|
|
271
271
|
"Despeckle",
|
|
272
272
|
"DifferenceKey",
|
|
273
|
-
"
|
|
273
|
+
"DilateErode",
|
|
274
274
|
"DirectionalBlur",
|
|
275
275
|
"Displace",
|
|
276
276
|
"DistanceKey",
|
|
@@ -297,7 +297,7 @@ __all__ = (
|
|
|
297
297
|
"GroupInput",
|
|
298
298
|
"GroupOutput",
|
|
299
299
|
"HueCorrect",
|
|
300
|
-
"
|
|
300
|
+
"HueSaturationValue",
|
|
301
301
|
"IDMask",
|
|
302
302
|
"Image",
|
|
303
303
|
"ImageCoordinates",
|
|
@@ -156,7 +156,7 @@ class AlphaOver(BaseNode):
|
|
|
156
156
|
)
|
|
157
157
|
|
|
158
158
|
|
|
159
|
-
class
|
|
159
|
+
class BrightnessContrast(BaseNode):
|
|
160
160
|
"""
|
|
161
161
|
Adjust brightness and contrast
|
|
162
162
|
|
|
@@ -968,7 +968,7 @@ class HueCorrect(BaseNode):
|
|
|
968
968
|
self._establish_links(**key_args)
|
|
969
969
|
|
|
970
970
|
|
|
971
|
-
class
|
|
971
|
+
class HueSaturationValue(BaseNode):
|
|
972
972
|
"""
|
|
973
973
|
Apply a color transformation in the HSV color model
|
|
974
974
|
|
|
@@ -856,7 +856,7 @@ class Despeckle(BaseNode):
|
|
|
856
856
|
self._establish_links(**key_args)
|
|
857
857
|
|
|
858
858
|
|
|
859
|
-
class
|
|
859
|
+
class DilateErode(BaseNode):
|
|
860
860
|
"""
|
|
861
861
|
Expand and shrink masks
|
|
862
862
|
|
|
@@ -942,7 +942,7 @@ class Dilateerode(BaseNode):
|
|
|
942
942
|
self._establish_links(**key_args)
|
|
943
943
|
|
|
944
944
|
@classmethod
|
|
945
|
-
def steps(cls, mask: InputFloat = 0.0, size: InputInteger = 0) -> "
|
|
945
|
+
def steps(cls, mask: InputFloat = 0.0, size: InputInteger = 0) -> "DilateErode":
|
|
946
946
|
"""Create Dilate/Erode node with type 'Steps'."""
|
|
947
947
|
return cls(mask=mask, size=size, type="Steps")
|
|
948
948
|
|
|
@@ -952,12 +952,12 @@ class Dilateerode(BaseNode):
|
|
|
952
952
|
mask: InputFloat = 0.0,
|
|
953
953
|
size: InputInteger = 0,
|
|
954
954
|
falloff_size: InputFloat = 0.0,
|
|
955
|
-
) -> "
|
|
955
|
+
) -> "DilateErode":
|
|
956
956
|
"""Create Dilate/Erode node with type 'Threshold'."""
|
|
957
957
|
return cls(mask=mask, size=size, falloff_size=falloff_size, type="Threshold")
|
|
958
958
|
|
|
959
959
|
@classmethod
|
|
960
|
-
def distance(cls, mask: InputFloat = 0.0, size: InputInteger = 0) -> "
|
|
960
|
+
def distance(cls, mask: InputFloat = 0.0, size: InputInteger = 0) -> "DilateErode":
|
|
961
961
|
"""Create Dilate/Erode node with type 'Distance'."""
|
|
962
962
|
return cls(mask=mask, size=size, type="Distance")
|
|
963
963
|
|
|
@@ -970,7 +970,7 @@ class Dilateerode(BaseNode):
|
|
|
970
970
|
| Literal[
|
|
971
971
|
"Smooth", "Sphere", "Root", "Inverse Square", "Sharp", "Linear"
|
|
972
972
|
] = "Smooth",
|
|
973
|
-
) -> "
|
|
973
|
+
) -> "DilateErode":
|
|
974
974
|
"""Create Dilate/Erode node with type 'Feather'."""
|
|
975
975
|
return cls(mask=mask, size=size, falloff=falloff, type="Feather")
|
|
976
976
|
|
|
@@ -118,8 +118,8 @@ from .input import (
|
|
|
118
118
|
Wireframe,
|
|
119
119
|
)
|
|
120
120
|
from .color import (
|
|
121
|
-
|
|
122
|
-
|
|
121
|
+
BrightnessContrast,
|
|
122
|
+
HueSaturationValue,
|
|
123
123
|
InvertColor,
|
|
124
124
|
LightFalloff,
|
|
125
125
|
)
|
|
@@ -175,7 +175,7 @@ __all__ = (
|
|
|
175
175
|
"Blackbody",
|
|
176
176
|
"Boolean",
|
|
177
177
|
"BrickTexture",
|
|
178
|
-
"
|
|
178
|
+
"BrightnessContrast",
|
|
179
179
|
"Bump",
|
|
180
180
|
"CameraData",
|
|
181
181
|
"CheckerTexture",
|
|
@@ -211,7 +211,7 @@ __all__ = (
|
|
|
211
211
|
"GroupOutput",
|
|
212
212
|
"HairBSDF",
|
|
213
213
|
"Holdout",
|
|
214
|
-
"
|
|
214
|
+
"HueSaturationValue",
|
|
215
215
|
"IesTexture",
|
|
216
216
|
"ImageTexture",
|
|
217
217
|
"ImplicitConversion",
|
|
@@ -17,7 +17,7 @@ from ...builder.socket import (
|
|
|
17
17
|
)
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
class
|
|
20
|
+
class BrightnessContrast(BaseNode):
|
|
21
21
|
"""
|
|
22
22
|
Control the brightness and contrast of the input color
|
|
23
23
|
|
|
@@ -79,7 +79,7 @@ class Brightnesscontrast(BaseNode):
|
|
|
79
79
|
self._establish_links(**key_args)
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class
|
|
82
|
+
class HueSaturationValue(BaseNode):
|
|
83
83
|
"""
|
|
84
84
|
Apply a color transformation in the HSV color model
|
|
85
85
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|