addVertexLine method

dynamic addVertexLine(
  1. dynamic a
)

Implementation

addVertexLine(a) {
  var src = this.vertices;
  var dst = this.object!.geometry["vertices"];

  dst.addAll([src[a + 0], src[a + 1], src[a + 2]]);
}