nodebpy 0.1.1__py3-none-any.whl → 0.2.0__py3-none-any.whl

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/nodes/__init__.py CHANGED
@@ -1,12 +1,626 @@
1
1
  """Auto-generated geometry node classes."""
2
2
 
3
- # Import manually specified nodes
4
- from .manually_specified import *
3
+ from . import (
4
+ attribute,
5
+ color,
6
+ converter,
7
+ grid,
8
+ input,
9
+ texture,
10
+ vector,
11
+ zone,
12
+ )
13
+ from .attribute import (
14
+ AttributeStatistic,
15
+ BlurAttribute,
16
+ CaptureAttribute,
17
+ DomainSize,
18
+ RemoveNamedAttribute,
19
+ StoreNamedAttribute,
20
+ )
21
+ from .color import Gamma, RGBCurves
22
+ from .converter import (
23
+ AccumulateField,
24
+ AlignRotationToVector,
25
+ AxesToRotation,
26
+ AxisAngleToRotation,
27
+ BitMath,
28
+ BooleanMath,
29
+ Clamp,
30
+ CombineColor,
31
+ CombineMatrix,
32
+ CombineTransform,
33
+ CombineXYZ,
34
+ Compare,
35
+ EulerToRotation,
36
+ EvaluateAtIndex,
37
+ EvaluateOnDomain,
38
+ FieldAverage,
39
+ FieldMinMax,
40
+ FieldVariance,
41
+ FindInString,
42
+ FloatCurve,
43
+ FloatToInteger,
44
+ FormatString,
45
+ HashValue,
46
+ IndexOfNearest,
47
+ IndexSwitch,
48
+ IntegerMath,
49
+ InvertMatrix,
50
+ InvertRotation,
51
+ JoinStrings,
52
+ MapRange,
53
+ MatchString,
54
+ Math,
55
+ MatrixDeterminant,
56
+ MenuSwitch,
57
+ Mix,
58
+ MultiplyMatrices,
59
+ PackUVIslands,
60
+ ProjectPoint,
61
+ QuaternionToRotation,
62
+ RandomValue,
63
+ ReplaceString,
64
+ RotateEuler,
65
+ RotateRotation,
66
+ RotateVector,
67
+ RotationToAxisAngle,
68
+ RotationToEuler,
69
+ RotationToQuaternion,
70
+ SeparateColor,
71
+ SeparateMatrix,
72
+ SeparateTransform,
73
+ SeparateXYZ,
74
+ SliceString,
75
+ StringLength,
76
+ StringToValue,
77
+ Switch,
78
+ TransformDirection,
79
+ TransformPoint,
80
+ TransposeMatrix,
81
+ UVUnwrap,
82
+ ValueToString,
83
+ VectorMath,
84
+ )
85
+ from .geometry import (
86
+ Arc,
87
+ Bake,
88
+ BezierSegment,
89
+ BoundingBox,
90
+ Cone,
91
+ ConvexHull,
92
+ Cube,
93
+ CurveCircle,
94
+ CurveLength,
95
+ CurveLine,
96
+ CurvesToGreasePencil,
97
+ CurveToMesh,
98
+ CurveToPoints,
99
+ Cylinder,
100
+ DeformCurvesOnSurface,
101
+ DeleteGeometry,
102
+ DistributePointsOnFaces,
103
+ DualMesh,
104
+ DuplicateElements,
105
+ EdgePathsToCurves,
106
+ ExtrudeMesh,
107
+ FillCurve,
108
+ FilletCurve,
109
+ FlipFaces,
110
+ GeometryProximity,
111
+ GeometryToInstance,
112
+ GreasePencilToCurves,
113
+ Grid,
114
+ IcoSphere,
115
+ InstanceOnPoints,
116
+ InstancesToPoints,
117
+ InterpolateCurves,
118
+ JoinGeometry,
119
+ MaterialSelection,
120
+ MergeByDistance,
121
+ MergeLayers,
122
+ MeshBoolean,
123
+ MeshCircle,
124
+ MeshLine,
125
+ MeshToCurve,
126
+ MeshToDensityGrid,
127
+ MeshToPoints,
128
+ MeshToSDFGrid,
129
+ MeshToVolume,
130
+ Points,
131
+ PointsToCurves,
132
+ PointsToSDFGrid,
133
+ PointsToVertices,
134
+ PointsToVolume,
135
+ QuadraticBezier,
136
+ Quadrilateral,
137
+ Raycast,
138
+ RealizeInstances,
139
+ ReplaceMaterial,
140
+ ResampleCurve,
141
+ ReverseCurve,
142
+ RotateInstances,
143
+ SampleCurve,
144
+ SampleIndex,
145
+ SampleNearest,
146
+ SampleNearestSurface,
147
+ SampleUVSurface,
148
+ ScaleElements,
149
+ ScaleInstances,
150
+ SeparateComponents,
151
+ SeparateGeometry,
152
+ SetCurveNormal,
153
+ SetCurveRadius,
154
+ SetCurveTilt,
155
+ SetFaceSet,
156
+ SetGeometryName,
157
+ SetGreasePencilColor,
158
+ SetGreasePencilDepth,
159
+ SetGreasePencilSoftness,
160
+ SetHandlePositions,
161
+ SetHandleType,
162
+ SetID,
163
+ SetInstanceTransform,
164
+ SetMaterial,
165
+ SetMaterialIndex,
166
+ SetMeshNormal,
167
+ SetPointRadius,
168
+ SetPosition,
169
+ SetSelection,
170
+ SetShadeSmooth,
171
+ SetSplineCyclic,
172
+ SetSplineResolution,
173
+ SetSplineType,
174
+ SortElements,
175
+ Spiral,
176
+ SplitEdges,
177
+ SplitToInstances,
178
+ Star,
179
+ StringToCurves,
180
+ SubdivideCurve,
181
+ SubdivideMesh,
182
+ SubdivisionSurface,
183
+ TransformGeometry,
184
+ TranslateInstances,
185
+ Triangulate,
186
+ TrimCurve,
187
+ UVSphere,
188
+ VolumeToMesh,
189
+ )
190
+ from .grid import (
191
+ AdvectGrid,
192
+ DistributePointsInGrid,
193
+ DistributePointsInVolume,
194
+ FieldToGrid,
195
+ GetNamedGrid,
196
+ GridCurl,
197
+ GridDivergence,
198
+ GridGradient,
199
+ GridInfo,
200
+ GridLaplacian,
201
+ GridToMesh,
202
+ PruneGrid,
203
+ SampleGrid,
204
+ SampleGridIndex,
205
+ SDFGridBoolean,
206
+ SDFGridFillet,
207
+ SDFGridLaplacian,
208
+ SDFGridMean,
209
+ SDFGridMeanCurvature,
210
+ SDFGridMedian,
211
+ SDFGridOffset,
212
+ SetGridBackground,
213
+ SetGridTransform,
214
+ StoreNamedGrid,
215
+ VolumeCube,
216
+ VoxelizeGrid,
217
+ )
218
+ from .group import Group
219
+ from .input import (
220
+ ID,
221
+ ActiveCamera,
222
+ ActiveElement,
223
+ Boolean,
224
+ CameraInfo,
225
+ Collection,
226
+ CollectionInfo,
227
+ Color,
228
+ CornersOfEdge,
229
+ CornersOfFace,
230
+ CornersOfVertex,
231
+ Cursor3D,
232
+ CurveHandlePositions,
233
+ CurveOfPoint,
234
+ CurveTangent,
235
+ CurveTilt,
236
+ EdgeAngle,
237
+ EdgeNeighbors,
238
+ EdgePathsToSelection,
239
+ EdgesOfCorner,
240
+ EdgesOfVertex,
241
+ EdgesToFaceGroups,
242
+ EdgeVertices,
243
+ EndpointSelection,
244
+ FaceArea,
245
+ FaceGroupBoundaries,
246
+ FaceNeighbors,
247
+ FaceOfCorner,
248
+ FaceSet,
249
+ HandleTypeSelection,
250
+ Image,
251
+ ImageInfo,
252
+ ImportCSV,
253
+ ImportOBJ,
254
+ ImportPLY,
255
+ ImportSTL,
256
+ ImportText,
257
+ ImportVDB,
258
+ Index,
259
+ InstanceBounds,
260
+ InstanceRotation,
261
+ InstanceScale,
262
+ InstanceTransform,
263
+ Integer,
264
+ IsEdgeSmooth,
265
+ IsFacePlanar,
266
+ IsFaceSmooth,
267
+ IsSplineCyclic,
268
+ IsViewport,
269
+ Material,
270
+ MaterialIndex,
271
+ MeshIsland,
272
+ MousePosition,
273
+ NamedAttribute,
274
+ NamedLayerSelection,
275
+ Normal,
276
+ Object,
277
+ ObjectInfo,
278
+ OffsetCornerInFace,
279
+ OffsetPointInCurve,
280
+ PointsOfCurve,
281
+ Position,
282
+ Radius,
283
+ Rotation,
284
+ SceneTime,
285
+ Selection,
286
+ SelfObject,
287
+ ShortestEdgePaths,
288
+ SpecialCharacters,
289
+ SplineLength,
290
+ SplineParameter,
291
+ SplineResolution,
292
+ String,
293
+ UVTangent,
294
+ Value,
295
+ Vector,
296
+ VertexNeighbors,
297
+ VertexOfCorner,
298
+ ViewportTransform,
299
+ VoxelIndex,
300
+ )
301
+ from .interface import DialGizmo, LinearGizmo, TransformGizmo, Viewer, Warning
302
+ from .texture import ImageTexture
303
+ from .zone import (
304
+ ForEachGeometryElementInput,
305
+ ForEachGeometryElementOutput,
306
+ RepeatInput,
307
+ RepeatOutput,
308
+ RepeatZone,
309
+ SimulationInput,
310
+ SimulationOutput,
311
+ SimulationZone,
312
+ )
5
313
 
6
- # Import auto-generated nodes
7
- from .attribute import *
8
- from .curve import *
9
- from .geometry import *
10
- from .input import *
11
- from .mesh import *
12
- from .utilities import *
314
+ __all__ = [
315
+ # modules"
316
+ "input",
317
+ "attribute",
318
+ "color",
319
+ "converter",
320
+ "texture",
321
+ "grid",
322
+ "vector",
323
+ "zone",
324
+ # from zone
325
+ "SimulationInput",
326
+ "SimulationOutput",
327
+ "RepeatInput",
328
+ "RepeatOutput",
329
+ "RepeatZone",
330
+ "SimulationZone",
331
+ # From attribute
332
+ "AttributeStatistic",
333
+ "BlurAttribute",
334
+ "DomainSize",
335
+ "NamedAttribute",
336
+ "RemoveNamedAttribute",
337
+ "StoreNamedAttribute",
338
+ # From curve
339
+ "Arc",
340
+ "BezierSegment",
341
+ "CurveCircle",
342
+ "CurveHandlePositions",
343
+ "CurveLength",
344
+ "CurveLine",
345
+ "CurveOfPoint",
346
+ "CurvesToGreasePencil",
347
+ "CurveTilt",
348
+ "CurveToPoints",
349
+ "DeformCurvesOnSurface",
350
+ "EdgePathsToCurves",
351
+ "EndpointSelection",
352
+ "FillCurve",
353
+ "FilletCurve",
354
+ "FloatCurve",
355
+ "GreasePencilToCurves",
356
+ "HandleTypeSelection",
357
+ "InterpolateCurves",
358
+ "OffsetPointInCurve",
359
+ "PointsOfCurve",
360
+ "PointsToCurves",
361
+ "Quadrilateral",
362
+ "QuadraticBezier",
363
+ "ResampleCurve",
364
+ "ReverseCurve",
365
+ "RGBCurves",
366
+ "SampleCurve",
367
+ "SetCurveNormal",
368
+ "SetCurveRadius",
369
+ "SetCurveTilt",
370
+ "SetHandlePositions",
371
+ "SetHandleType",
372
+ "SetSplineType",
373
+ "Spiral",
374
+ "IndexSwitch",
375
+ "MenuSwitch",
376
+ "Star",
377
+ "StringToCurves",
378
+ "SubdivideCurve",
379
+ "TrimCurve",
380
+ # From geometry
381
+ "AccumulateField",
382
+ "ActiveElement",
383
+ "AdvectGrid",
384
+ "Bake",
385
+ "BoundingBox",
386
+ "CameraInfo",
387
+ "CollectionInfo",
388
+ "ConvexHull",
389
+ "CornersOfEdge",
390
+ "CornersOfFace",
391
+ "CornersOfVertex",
392
+ "Cursor3D",
393
+ "DeleteGeometry",
394
+ "DialGizmo",
395
+ "DistributePointsInGrid",
396
+ "DistributePointsInVolume",
397
+ "DistributePointsOnFaces",
398
+ "DuplicateElements",
399
+ "EdgePathsToSelection",
400
+ "EdgesOfCorner",
401
+ "EdgesOfVertex",
402
+ "EdgesToFaceGroups",
403
+ "EvaluateAtIndex",
404
+ "EvaluateOnDomain",
405
+ "FaceOfCorner",
406
+ "FaceSet",
407
+ "FieldAverage",
408
+ "FieldMinMax",
409
+ "FieldToGrid",
410
+ "FieldVariance",
411
+ "FlipFaces",
412
+ "ForEachGeometryElementOutput",
413
+ "GeometryProximity",
414
+ "GeometryToInstance",
415
+ "GetNamedGrid",
416
+ "GridCurl",
417
+ "GridDivergence",
418
+ "GridGradient",
419
+ "GridInfo",
420
+ "GridLaplacian",
421
+ "Group",
422
+ "ImageInfo",
423
+ "ImageTexture",
424
+ "ImportCSV",
425
+ "ImportOBJ",
426
+ "ImportPLY",
427
+ "ImportSTL",
428
+ "ImportText",
429
+ "ImportVDB",
430
+ "IndexOfNearest",
431
+ "InstanceOnPoints",
432
+ "InstancesToPoints",
433
+ "InstanceTransform",
434
+ "IsViewport",
435
+ "JoinStrings",
436
+ "LinearGizmo",
437
+ "MaterialSelection",
438
+ "MergeByDistance",
439
+ "MergeLayers",
440
+ "MousePosition",
441
+ "ObjectInfo",
442
+ "OffsetCornerInFace",
443
+ "PackUVIslands",
444
+ "Points",
445
+ "PointsToSDFGrid",
446
+ "PointsToVertices",
447
+ "PointsToVolume",
448
+ "PruneGrid",
449
+ "Raycast",
450
+ "RealizeInstances",
451
+ "ReplaceMaterial",
452
+ "RotateInstances",
453
+ "SampleGrid",
454
+ "SampleGridIndex",
455
+ "SampleIndex",
456
+ "SampleNearest",
457
+ "SampleNearestSurface",
458
+ "SampleUVSurface",
459
+ "ScaleElements",
460
+ "ScaleInstances",
461
+ "SDFGridBoolean",
462
+ "SDFGridFillet",
463
+ "SDFGridLaplacian",
464
+ "SDFGridMean",
465
+ "SDFGridMeanCurvature",
466
+ "SDFGridMedian",
467
+ "SDFGridOffset",
468
+ "Selection",
469
+ "SelfObject",
470
+ "SeparateComponents",
471
+ "SeparateGeometry",
472
+ "SetFaceSet",
473
+ "SetGeometryName",
474
+ "SetGreasePencilColor",
475
+ "SetGreasePencilDepth",
476
+ "SetGreasePencilSoftness",
477
+ "SetGridBackground",
478
+ "SetGridTransform",
479
+ "SetID",
480
+ "SetInstanceTransform",
481
+ "SetMaterial",
482
+ "SetMaterialIndex",
483
+ "SetPointRadius",
484
+ "SetPosition",
485
+ "SetSelection",
486
+ "SetShadeSmooth",
487
+ "SetSplineCyclic",
488
+ "SetSplineResolution",
489
+ "SortElements",
490
+ "SplineLength",
491
+ "SplineParameter",
492
+ "SplitEdges",
493
+ "SplitToInstances",
494
+ "StoreNamedGrid",
495
+ "SubdivisionSurface",
496
+ "Switch",
497
+ "TransformGeometry",
498
+ "TransformGizmo",
499
+ "TranslateInstances",
500
+ "Triangulate",
501
+ "UVTangent",
502
+ "UVUnwrap",
503
+ "VertexOfCorner",
504
+ "Viewer",
505
+ "ViewportTransform",
506
+ "VolumeCube",
507
+ "VoxelizeGrid",
508
+ "Warning",
509
+ # From input
510
+ "ActiveCamera",
511
+ "Boolean",
512
+ "Collection",
513
+ "Color",
514
+ "CurveTangent",
515
+ "ForEachGeometryElementInput",
516
+ "ID",
517
+ "Image",
518
+ "Index",
519
+ "InstanceBounds",
520
+ "InstanceRotation",
521
+ "InstanceScale",
522
+ "Integer",
523
+ "IsEdgeSmooth",
524
+ "IsFaceSmooth",
525
+ "IsSplineCyclic",
526
+ "Material",
527
+ "MaterialIndex",
528
+ "NamedLayerSelection",
529
+ "Normal",
530
+ "Object",
531
+ "Position",
532
+ "Radius",
533
+ "Group",
534
+ "Rotation",
535
+ "SceneTime",
536
+ "ShortestEdgePaths",
537
+ "SpecialCharacters",
538
+ "SplineResolution",
539
+ "String",
540
+ "Value",
541
+ "VoxelIndex",
542
+ # From manually_specified
543
+ "BooleanMath",
544
+ "CaptureAttribute",
545
+ "CombineXYZ",
546
+ "JoinGeometry",
547
+ "Math",
548
+ "Mix",
549
+ "RandomValue",
550
+ "SeparateXYZ",
551
+ "Vector",
552
+ "VectorMath",
553
+ # From mesh
554
+ "Cone",
555
+ "Cube",
556
+ "CurveToMesh",
557
+ "Cylinder",
558
+ "DualMesh",
559
+ "EdgeAngle",
560
+ "EdgeNeighbors",
561
+ "EdgeVertices",
562
+ "ExtrudeMesh",
563
+ "FaceArea",
564
+ "FaceGroupBoundaries",
565
+ "FaceNeighbors",
566
+ "Grid",
567
+ "GridToMesh",
568
+ "IcoSphere",
569
+ "IsFacePlanar",
570
+ "MeshBoolean",
571
+ "MeshCircle",
572
+ "MeshIsland",
573
+ "MeshLine",
574
+ "MeshToCurve",
575
+ "MeshToDensityGrid",
576
+ "MeshToPoints",
577
+ "MeshToSDFGrid",
578
+ "MeshToVolume",
579
+ "SetMeshNormal",
580
+ "SubdivideMesh",
581
+ "UVSphere",
582
+ "VertexNeighbors",
583
+ "VolumeToMesh",
584
+ # From utilities
585
+ "AlignRotationToVector",
586
+ "AxesToRotation",
587
+ "AxisAngleToRotation",
588
+ "BitMath",
589
+ "Clamp",
590
+ "CombineColor",
591
+ "CombineMatrix",
592
+ "CombineTransform",
593
+ "Compare",
594
+ "EulerToRotation",
595
+ "FindInString",
596
+ "FloatToInteger",
597
+ "FormatString",
598
+ "Gamma",
599
+ "HashValue",
600
+ "IntegerMath",
601
+ "InvertMatrix",
602
+ "InvertRotation",
603
+ "MapRange",
604
+ "MatchString",
605
+ "MatrixDeterminant",
606
+ "MultiplyMatrices",
607
+ "ProjectPoint",
608
+ "QuaternionToRotation",
609
+ "ReplaceString",
610
+ "RotateEuler",
611
+ "RotateRotation",
612
+ "RotateVector",
613
+ "RotationToAxisAngle",
614
+ "RotationToEuler",
615
+ "RotationToQuaternion",
616
+ "SeparateColor",
617
+ "SeparateMatrix",
618
+ "SeparateTransform",
619
+ "SliceString",
620
+ "StringLength",
621
+ "StringToValue",
622
+ "TransformDirection",
623
+ "TransformPoint",
624
+ "TransposeMatrix",
625
+ "ValueToString",
626
+ ]