update method

void update()

Implementation

void update() {
  final update = Float32List.view(data.buffer, 0, position);
  _renderingContext!.bufferSubData(gl.WebGL.ARRAY_BUFFER, 0, update);
  _renderStatistics.vertexCount += count;
}