Plane.opCall - multiple declarations

Function Plane.opCall

Return a Plane with all values at zero

static Plane opCall();

Function Plane.opCall

Return a Plane with the Vec3f component of n and distance of d

static Plane opCall (
  Vector!(float,3) n,
  float d
);

Function Plane.opCall

Return a Plane with a Vec3f component of x, y, z and distance of d

static Plane opCall (
  float x,
  float y,
  float z,
  float d
);