scale 抽象方法

Float32x4 scale(
  1. double s
)

返回当前Float32x4的一个副本,每个通道都按s进行缩放。等价于 this * new Float32x4.splat(s)

实现

Float32x4 scale(double s);