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.
Files changed (81) hide show
  1. {nodebpy-520.10.0 → nodebpy-520.11.0}/PKG-INFO +1 -1
  2. {nodebpy-520.10.0 → nodebpy-520.11.0}/pyproject.toml +1 -1
  3. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/__init__.py +6 -6
  4. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/color.py +2 -2
  5. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/filter.py +5 -5
  6. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/__init__.py +4 -4
  7. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/color.py +2 -2
  8. {nodebpy-520.10.0 → nodebpy-520.11.0}/README.md +0 -0
  9. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/__init__.py +0 -0
  10. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/assets/__init__.py +0 -0
  11. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/assets/__main__.py +0 -0
  12. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/assets/_codegen.py +0 -0
  13. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/__init__.py +0 -0
  14. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/_registry.py +0 -0
  15. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/_utils.py +0 -0
  16. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/accessor.py +0 -0
  17. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/arrange.py +0 -0
  18. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/asset.py +0 -0
  19. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/items.py +0 -0
  20. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/mixins.py +0 -0
  21. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/node.py +0 -0
  22. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/socket.py +0 -0
  23. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/builder/tree.py +0 -0
  24. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/__init__.py +0 -0
  25. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/codegen.py +0 -0
  26. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/diagram.py +0 -0
  27. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/export/web_render.py +0 -0
  28. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/__init__.py +0 -0
  29. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/__init__.py +0 -0
  30. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/graph.py +0 -0
  31. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/ordering.py +0 -0
  32. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/ranking.py +0 -0
  33. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/realize.py +0 -0
  34. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/stacking.py +0 -0
  35. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/structs.py +0 -0
  36. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/sugiyama.py +0 -0
  37. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/x_coords.py +0 -0
  38. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/arrange/y_coords.py +0 -0
  39. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/config.py +0 -0
  40. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/lib/nodearrange/utils.py +0 -0
  41. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/__init__.py +0 -0
  42. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/_mixins.py +0 -0
  43. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/assets.py +0 -0
  44. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/converter.py +0 -0
  45. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/distort.py +0 -0
  46. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/group.py +0 -0
  47. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/input.py +0 -0
  48. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/interface.py +0 -0
  49. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/manual.py +0 -0
  50. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/matte.py +0 -0
  51. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/output.py +0 -0
  52. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/compositor/vector.py +0 -0
  53. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/__init__.py +0 -0
  54. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/assets.py +0 -0
  55. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/attribute.py +0 -0
  56. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/color.py +0 -0
  57. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/converter.py +0 -0
  58. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/geometry.py +0 -0
  59. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/grid.py +0 -0
  60. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/group.py +0 -0
  61. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/groups.py +0 -0
  62. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/input.py +0 -0
  63. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/interface.py +0 -0
  64. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/manual.py +0 -0
  65. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/output.py +0 -0
  66. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/texture.py +0 -0
  67. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/utilities.py +0 -0
  68. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/vector.py +0 -0
  69. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/geometry/zone.py +0 -0
  70. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/assets.py +0 -0
  71. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/converter.py +0 -0
  72. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/grid.py +0 -0
  73. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/group.py +0 -0
  74. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/input.py +0 -0
  75. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/manual.py +0 -0
  76. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/output.py +0 -0
  77. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/script.py +0 -0
  78. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/shader.py +0 -0
  79. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/texture.py +0 -0
  80. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/nodes/shader/vector.py +0 -0
  81. {nodebpy-520.10.0 → nodebpy-520.11.0}/src/nodebpy/types.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nodebpy
3
- Version: 520.10.0
3
+ Version: 520.11.0
4
4
  Summary: Build nodes trees in Blender more elegantly with code
5
5
  Author: Brady Johnston
6
6
  Author-email: Brady Johnston <brady.johnston@me.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nodebpy"
3
- version = "520.10.0"
3
+ version = "520.11.0"
4
4
  description = "Build nodes trees in Blender more elegantly with code"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -99,13 +99,13 @@ from ..geometry.vector import (
99
99
  )
100
100
  from .color import (
101
101
  AlphaOver,
102
- Brightnesscontrast,
102
+ BrightnessContrast,
103
103
  ColorBalance,
104
104
  ColorCorrection,
105
105
  DepthCombine,
106
106
  Exposure,
107
107
  HueCorrect,
108
- Huesaturationvalue,
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
- Dilateerode,
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
- "Brightnesscontrast",
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
- "Dilateerode",
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
- "Huesaturationvalue",
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 Brightnesscontrast(BaseNode):
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 Huesaturationvalue(BaseNode):
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 Dilateerode(BaseNode):
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) -> "Dilateerode":
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
- ) -> "Dilateerode":
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) -> "Dilateerode":
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
- ) -> "Dilateerode":
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
- Brightnesscontrast,
122
- Huesaturationvalue,
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
- "Brightnesscontrast",
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
- "Huesaturationvalue",
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 Brightnesscontrast(BaseNode):
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 Huesaturationvalue(BaseNode):
82
+ class HueSaturationValue(BaseNode):
83
83
  """
84
84
  Apply a color transformation in the HSV color model
85
85
 
File without changes