LineLoop constructor

LineLoop(
  1. BufferGeometry? geometry,
  2. Material? material
)

geometry — List of vertices representing points on the line loop.

material — Material for the line. Default is LineBasicMaterial.

Implementation

LineLoop(super.geometry, super.material){
  type = 'LineLoop';
}