set method

void set(
  1. Vector3 start,
  2. Vector3 end,
  3. double radius
)

Implementation

void set(Vector3 start, Vector3 end, double radius){
  this.start.copy(start);
  this.end.copy(end);
  this.radius = radius;
}