ownWorldAabb property
Aabb
get
ownWorldAabb
Computes the AABB of this node's own geometry in world space (without descendants). Used for self-hits in raycasting and physics.
Implementation
Aabb get ownWorldAabb {
final local = localAabb;
return local.transformed(worldMatrix);
}