w method

double w(
  1. double r
)

Implementation

double w(double r) {
  // 315
  final h = smoothingRadius;
  return (315.0 / (64.0 * math.pi * math.pow(h, 9))) * math.pow((h * h - r * r), 3).toDouble();
}