THREE.MeshLine icon indicating copy to clipboard operation
THREE.MeshLine copied to clipboard

Mesh replacement for THREE.Line

Results 78 THREE.MeshLine issues
Sort by recently updated
recently updated
newest added

ShaderMaterial already copied all the uniforms. No need to copy again ? ````javascript MeshLineMaterial.prototype.copy = function(source) { THREE.ShaderMaterial.prototype.copy.call(this, source) // No need to copy again~~~~ this.lineWidth = source.lineWidth this.map =...

Hi, There is an error in the README.md file: It's written: ```javascript const line = new MeshLine(); line.setPoints(points); ``` ```javascript // p is a decimal percentage of the number of...

Support for Texture Animation?

Would it be possible to implement lines with disconnected segments? I read this article about [Instanced lines](https://wwwtyro.net/2019/11/18/instanced-lines.html) doing this. I wonder if we could reduce drawcalls for example when drawing...

I was trying to figure out raycasting with MeshLine and found that the early exit optimization never gets called when you don't intersect the sphere. ` if (raycaster.ray.intersectSphere(sphere, interRay) ===...

Hi, Beware, threeJS has changed the way to get the inverse matrix. Line 142 of THREE.MeshLine.js it's: ```javascript inverseMatrix.getInverse(this.matrixWorld) ``` And now it should be: ```javascript inverseMatrix.copy(this.matrixWorld).invert() ``` Best regards...

Hi, I'm using React Three Fiber and I want to change my "Line" to a "MeshLine" since I want to set a width on it. But I cannot make it...

Would be useful I think! (for me at least :P) I can submit a PR if you want.

Is it possible to add an arrowhead to the meshline? I'm not able to find any example around it, it would be nice if someone can guide me towards the...