getPointStrokeWidth static method

double getPointStrokeWidth(
  1. double z, {
  2. double? halfWidth,
})

获取点大小

Implementation

static double getPointStrokeWidth(double z, {double? halfWidth}) {
  halfWidth ??= pointHalfWidth;
  return _getDisplaySize(z, halfWidth);
}