containPoint method

bool containPoint(
  1. Offset offset
)

Implementation

bool containPoint(Offset offset){
  return distanceTo(offset, centerPoint) <= frameRadius;
}