ManuGraiph

Results 72 comments of ManuGraiph

Yes, i know, but, for example.. what args can i pass with ` line_settings`? I know one of its keys is `point_size`, but what other i can use for i...

I'm having the exact same issue, i'm intersecting a mesh with a ray that clearly intersects one of its elements and the location is incorrect. If i move the ray...

Sure, this is the code. It's just a test code: `mesh = tm.Trimesh(vertices = [[0.5,2.5,1.5],[0.5,2.5,-1.5],[0.5,0.5,1.5],[0.5,0.5,-1.5]], faces = [[0,1,2],[1,2,3]])` `mesh = tm.remesh.subdivide_to_size(mesh.vertices,mesh.faces,max_edge=0.5)` `mesh = tm.Trimesh(vertices=mesh[0],faces=mesh[1])` `rori=np.array([[0,0.8,-0.4]])` `rdir=np.array([[1,0.8,-0.6]])` `locations, index_ray, index_tri =...

Well, i'd like to expand the scope of the issue a bit if i may.. i have line segments (two points) and i need to check where they intersect with...

No, i'm asking for the edge colours, not the vertex colors. I thought maybe there was some built-in arg for it.

Ohh, interesting.. it seems that with the mode = 'lines' it only plots the wireframe if the mesh and then the color arg is the edge color. I'm gonna give...

@ondrolexa Question.. apsg uses mplstereonet/matplotlib as backend for plotting? Cause i just started using mplstereonet again after a long time yday and i found that a lot of arguments no...

For ex., in any StereoNet plot i can't change the grid step: `s = StereoNet(gridstep=x)` With x being any number, doesn't work, it always uses 15. Actually, i can put...

That one did the trick, thanks.