calculateBounds method

  1. @override
Box calculateBounds({
  1. PositionScheme scheme = Position.scheme,
})
override

The bounding box for this point, min and max with the same point position.

Implementation

@override
Box calculateBounds({PositionScheme scheme = Position.scheme}) =>
    scheme.box.call(
      minX: position.x,
      minY: position.y,
      minZ: position.optZ,
      minM: position.optM,
      maxX: position.x,
      maxY: position.y,
      maxZ: position.optZ,
      maxM: position.optM,
    );