lineWidth method

void lineWidth(
  1. double width
)

Implementation

void lineWidth(double width){
  startCheck('lineWidth');
  gl.glLineWidth(width);
  checkError('lineWidth');
}