aabbContainsPoint method

bool aabbContainsPoint(
  1. double x,
  2. double y
)

Returns true if the axis aligned bounding box contains the point.

Implementation

bool aabbContainsPoint(double x, double y) {
  final result = SpineBindings.bindings.spine_skeleton_bounds_aabb_contains_point(_ptr, x, y);
  return result;
}