translate method

void translate(
  1. Vector3 v
)

Implementation

void translate(Vector3 v) {
  start.add(v);
  end.add(v);
}