Vector3.fromValue constructor

const Vector3.fromValue(
  1. double k
)

Implementation

const Vector3.fromValue(double k)
    : x = k,
      y = k,
      z = k;