Hi there, For a project of mine I am generating a 3d mesh using vertices and face indexes that have already been calculated. This mesh gets updated when certain parameters are changed, these parameters are irrelevant to the issues I am having.
ex. meshdata_cache = gl.MeshData(vertexes=pointcloud, faces=face_indexes, faceColors = face_colors) self.meshPlot.setMeshData(meshdata = meshdata_cache) self.meshPlot.meshDataChanged() The shapes look something like this...(attached)...with the axis in red,blue and green, with corresponding rings representing the different planes. What I need to do, is find a way to plot the crosssections along the xy, xz, and yz planes. I have tried using the trimesh package and meshcut to generate the cross sections with limited success with trimesh. The problem being that trimesh is dependent on the packages Shapely etc. which are not optimal for my windows machine. Is there a way to cleanly achieve cross sectional cuts without importing other packages. Any ideas or useful packages would be appreciated. Ryan -- You received this message because you are subscribed to the Google Groups "pyqtgraph" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/98eb02f4-3010-4b91-962c-00534df43731%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
