aabbIntersectsSegment method
Returns true if the axis aligned bounding box intersects the line segment.
Implementation
bool aabbIntersectsSegment(double x1, double y1, double x2, double y2) {
final result = SpineBindings.bindings.spine_skeleton_bounds_aabb_intersects_segment(_ptr, x1, y1, x2, y2);
return result;
}