CloudPoint
Bases: Point, CloudPoint
Source code in core/domains.py
76 77 | |
count
property
normal
property
writable
Write only property for node
offset
property
writable
Write only property for node
position
property
writable
Property get node
radius
property
writable
Property get node
__init__(geometry)
Base class for geometry domains
A domain stores the default value to be set in node needing a domain parameter such as 'Store Named Attibute.
All nodes requiring a domain parameter are implemented as domain method
cube = Mesh.Cube()
cube.faces.store_named_attribute() # doamin = 'FACE'
When a node as a Selection socket, the value can be set using the get item syntax:
# Plug the value of 'my_selection` into Selection socket
Mesh().points[my_selection].store_named_attribute("Name", value)
Important
Domains are never instantiated directly but created by geometries.
The domain specific to geometries are the followings: - Mesh: - points (class Vertex) - faces (class Face) - edges (class Edge) - corners (clas Corner) - Curve: - points (class SplinePoint) - splines (class Spline) - GreasePencil: - layers (class Layer) - Instances - insts (class Instance) - Cloud - points (class CloudPoint) - Volume
All the domain classes are a subclass of Domain. Vertex, SplinePoint and SplinePoint classes are subclasses of Point.
See: Vertex, Face, Edge, Corner, SplinePoint, Spline, CloudPoint, Instance
Properties
_geo : Geometry the geometry the domain belongs to
Source code in core/domain_class.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | |
accumulate_field(value=None, group_id=None)
classmethod
Node Accumulate Field
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | data_type |
from value type |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Float | Integer | Vector | Matrix
|
socket 'Value' (id: Value) |
None
|
group_id
|
Integer
|
socket 'Group ID' (id: Group Index) |
None
|
Returns:
| Type | Description |
|---|---|
Float
|
peer sockets: trailing_ (Float), total_ (Float) |
Source code in core/generated/dom_point.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
active_element()
classmethod
Node Active Element
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | domain |
'POINT' |
Returns:
| Type | Description |
|---|---|
Integer
|
peer sockets: exists_ (Boolean) |
Source code in core/generated/dom_point.py
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 | |
attribute_statistic(attribute=None)
Node Attribute Statistic
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | data_type |
from attribute type |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
attribute
|
Float | Vector
|
socket 'Attribute' (id: Attribute) |
None
|
Returns:
| Type | Description |
|---|---|
Float
|
peer sockets: median_ (Float), sum_ (Float), min_ (Float), max_ (Float), range_ (Float), standard_deviation_ (Float), variance_ (Float) |
Source code in core/generated/dom_point.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | |
capture(attribute=None, **attributes)
Node Capture Attribute
[&JUMP]
Short name for capture_attribute
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
attribute
|
Socket
|
first attribute to capture |
None
|
**attributes
|
dict
|
named attributes to capture |
{}
|
Returns:
| Type | Description |
|---|---|
Node or Socket
|
|
Source code in core/domain_class.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | |
capture_attribute(attribute=None, **attributes)
Node Capture Attribute
[&JUMP]
Caution
When there is only one attribute, the function returns the captured attribute, otherwise returns the node.
with GeoNodes("Capture Attribute"):
# Capture several attributes
node = mesh.points.capture_attribute(attr1 = attr1, attr2=attr2)
captured_attr1 = node.attr1
captured_attr2 = node.attr2
# Capture one single attribute
captured_attr = mesh.points.capture_attribute(my_attr=attr1)
# Capture one attribute without key
captured_attr3 = mesh.points.capture_attribute(attr3)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
attribute
|
Socket
|
first attribute to capture |
None
|
**attributes
|
dict(Sockets): named attributes to capture
|
|
{}
|
Returns:
| Type | Description |
|---|---|
Node or Socket
|
|
Source code in core/domain_class.py
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | |
delete(mode='ALL')
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mode
|
Literal['All', 'Only Edges & Faces', 'Only Faces']
|
parameter |
'ALL'
|
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | |
delete_all()
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
| Parameter | mode |
'ALL' |
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | |
delete_edge_face()
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
| Parameter | mode |
'EDGE_FACE' |
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | |
delete_geometry(mode='ALL')
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mode
|
Literal['All', 'Only Edges & Faces', 'Only Faces']
|
parameter |
'ALL'
|
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | |
delete_geometry_all()
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
| Parameter | mode |
'ALL' |
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | |
delete_geometry_edge_face()
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
| Parameter | mode |
'EDGE_FACE' |
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
delete_geometry_only_face()
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
| Parameter | mode |
'ONLY_FACE' |
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | |
delete_only_face()
Node Delete Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
| Parameter | mode |
'ONLY_FACE' |
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 | |
duplicate(amount=None)
Node Duplicate Elements
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
amount
|
Integer
|
socket 'Amount' (id: Amount) |
None
|
Returns:
| Type | Description |
|---|---|
Geometry
|
peer sockets: duplicate_index_ (Integer) |
Source code in core/generated/dom_point.py
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | |
evaluate_at_index(value=None, index=None)
classmethod
Node Evaluate at Index
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | data_type |
from value type |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Float | Integer | Boolean | Vector | Color | Rotation | Matrix
|
socket 'Value' (id: Value) |
None
|
index
|
Integer
|
socket 'Index' (id: Index) |
None
|
Returns:
| Type | Description |
|---|---|
Float
|
|
Source code in core/generated/dom_point.py
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | |
evaluate_on_domain(value=None)
classmethod
Node Evaluate on Domain
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | data_type |
from value type |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Float | Integer | Boolean | Vector | Color | Rotation | Matrix
|
socket 'Value' (id: Value) |
None
|
Returns:
| Type | Description |
|---|---|
Float
|
|
Source code in core/generated/dom_point.py
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | |
field_average(value=None, group_id=None, domain='POINT')
classmethod
Node Field Average
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | data_type |
from value type |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Float | Vector
|
socket 'Value' (id: Value) |
None
|
group_id
|
Integer
|
socket 'Group ID' (id: Group Index) |
None
|
domain
|
Literal['Point', 'Edge', 'Face', 'Face Corner', 'Spline', 'Instance', 'Layer']
|
parameter |
'POINT'
|
Returns:
| Type | Description |
|---|---|
Float
|
peer sockets: median_ (Float) |
Source code in core/generated/dom_point.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | |
field_min_max(value=None, group_id=None, domain='POINT')
classmethod
Node Field Min & Max
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | data_type |
from value type |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Float | Integer | Vector
|
socket 'Value' (id: Value) |
None
|
group_id
|
Integer
|
socket 'Group ID' (id: Group Index) |
None
|
domain
|
Literal['Point', 'Edge', 'Face', 'Face Corner', 'Spline', 'Instance', 'Layer']
|
parameter |
'POINT'
|
Returns:
| Type | Description |
|---|---|
Float
|
peer sockets: max_ (Float) |
Source code in core/generated/dom_point.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | |
field_variance(value=None, group_id=None, domain='POINT')
classmethod
Node Field Variance
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | data_type |
from value type |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Float | Vector
|
socket 'Value' (id: Value) |
None
|
group_id
|
Integer
|
socket 'Group ID' (id: Group Index) |
None
|
domain
|
Literal['Point', 'Edge', 'Face', 'Face Corner', 'Spline', 'Instance', 'Layer']
|
parameter |
'POINT'
|
Returns:
| Type | Description |
|---|---|
Float
|
peer sockets: variance_ (Float) |
Source code in core/generated/dom_point.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
for_each_element(named_sockets={}, selection=None, **sockets)
Simulation zone
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
named_sockets
|
dict
|
named sockets default={}. |
{}
|
selection
|
Boolean
|
selection default=None. |
None
|
sockets
|
dict
|
other sockets |
{}
|
Returns:
| Type | Description |
|---|---|
ZoneIterator
|
|
Source code in core/domain_class.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | |
get_selection()
Get the selection from Gometry and/or from Domain
Source code in core/domain_class.py
154 155 156 157 158 159 160 161 162 163 164 165 | |
instance_on(instance=None, pick_instance=None, instance_index=None, rotation=None, scale=None)
Node Instance on Points
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Points | self |
| Socket | Selection | self[selection] |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
instance
|
Instances
|
socket 'Instance' (id: Instance) |
None
|
pick_instance
|
Boolean
|
socket 'Pick Instance' (id: Pick Instance) |
None
|
instance_index
|
Integer
|
socket 'Instance Index' (id: Instance Index) |
None
|
rotation
|
Rotation
|
socket 'Rotation' (id: Rotation) |
None
|
scale
|
Vector
|
socket 'Scale' (id: Scale) |
None
|
Returns:
| Type | Description |
|---|---|
Instances
|
|
Source code in core/generated/dom_point.py
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | |
sample_index(value=None, index=None, clamp=False)
Node Sample Index
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Parameter | data_type |
from value type |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Float | Integer | Boolean | Vector | Color | Rotation | Matrix
|
socket 'Value' (id: Value) |
None
|
index
|
Integer
|
socket 'Index' (id: Index) |
None
|
clamp
|
bool
|
parameter |
False
|
Returns:
| Type | Description |
|---|---|
Float
|
|
Source code in core/generated/dom_point.py
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | |
sample_nearest(sample_position=None)
Node Sample Nearest
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sample_position
|
Vector
|
socket 'Sample Position' (id: Sample Position) |
None
|
Returns:
| Type | Description |
|---|---|
Integer
|
|
Source code in core/generated/dom_point.py
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | |
separate()
Node Separate Geometry
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
Returns:
| Type | Description |
|---|---|
node[selection(Geometry), inverted(Geometry)]
|
|
Source code in core/generated/dom_point.py
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 | |
set_radius(radius=None)
Node Set Point Radius
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Points | self |
| Socket | Selection | self[selection] |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
radius
|
Float
|
socket 'Radius' (id: Radius) |
None
|
Returns:
| Type | Description |
|---|---|
Cloud
|
|
Source code in core/generated/dom_point.py
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | |
set_selection()
Node Set Selection
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
| Parameter | selection_type |
from selection type |
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 | |
sort(group_id=None, sort_weight=None)
Node Sort Elements
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
group_id
|
Integer
|
socket 'Group ID' (id: Group ID) |
None
|
sort_weight
|
Float
|
socket 'Sort Weight' (id: Sort Weight) |
None
|
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 | |
split_to_instances(group_id=None)
Node Split to Instances
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
group_id
|
Integer
|
socket 'Group ID' (id: Group ID) |
None
|
Returns:
| Type | Description |
|---|---|
Instances
|
peer sockets: group_id_ (Integer) |
Source code in core/generated/dom_point.py
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 | |
store(name=None, value=None)
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | data_type |
from value type |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
String
|
socket 'Name' (id: Name) |
None
|
value
|
Float | Integer | Boolean | Vector | Color | Rotation | Matrix | Integer | Vector | Color
|
socket 'Value' (id: Value) |
None
|
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 | |
store_named_attribute(name=None, value=None)
Jump : Socket refers to node output socket after the call
Fixed values
| Kind | Name | Value |
|---|---|---|
| Socket | Geometry | self |
| Socket | Selection | self[selection] |
| Parameter | data_type |
from value type |
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
String
|
socket 'Name' (id: Name) |
None
|
value
|
Float | Integer | Boolean | Vector | Color | Rotation | Matrix | Integer | Vector | Color
|
socket 'Value' (id: Value) |
None
|
Returns:
| Type | Description |
|---|---|
Geometry
|
|
Source code in core/generated/dom_point.py
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 | |
viewer(named_sockets={}, ui_shortcut=0, **sockets)
classmethod
Node Viewer
Fixed values
| Kind | Name | Value |
|---|---|---|
| Parameter | domain |
'POINT' |
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
named_sockets
|
dict
|
Sockets created with string names |
{}
|
ui_shortcut
|
int
|
parameter |
0
|
sockets
|
dict
|
Socket created with python name attributes |
{}
|
Source code in core/generated/dom_point.py
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 | |