LineSegments constructor

LineSegments(
  1. BufferGeometry? geometry, [
  2. Material? material
])

geometry — Pair(s) of vertices representing each line segment(s).

material — Material for the line. Default is LineBasicMaterial.

Implementation

LineSegments(super.geometry, [super.material]){
  type = 'LineSegments';
}