applyMatrix method

LineSegmentsGeometry applyMatrix(
  1. Matrix4 matrix
)

Implementation

LineSegmentsGeometry applyMatrix(Matrix4 matrix ) {
	console.warning( 'THREE.LineSegmentsGeometry: applyMatrix() has been renamed to applyMatrix4().' );
	return this.applyMatrix4( matrix );
}