aabbIntersectsSkeleton method

bool aabbIntersectsSkeleton(
  1. SkeletonBounds bounds
)

Returns true if the axis aligned bounding box intersects the axis aligned bounding box of the specified bounds.

Implementation

bool aabbIntersectsSkeleton(SkeletonBounds bounds) {
  final result = SpineBindings.bindings.spine_skeleton_bounds_aabb_intersects_skeleton(_ptr, bounds.nativePtr.cast());
  return result;
}