fromLine method

LineGeometry fromLine(
  1. dynamic line
)

Implementation

LineGeometry fromLine( line ) {
	final geometry = line.geometry;
	this.setPositions( geometry.attributes['position'].array ); // assumes non-indexed
	return this;
}