sorry for the easy question but I'm new to Python. I have a set of points with these coordinates:
x=part.points[:,0]
y=part.points[:,1]
z=part.points[:,2]
And I'd like to select only the points with z>0.5 and z<0.6. I guess I have to use a where operator but it doesn't work. I mean when I type
import numarray
I get that this module is not defined. Are there other solution to do what I need?
part? What libraries are you using? What do you mean by "select"?x,yandzare variables that seem to hold some subsets of your points; what does that have to do with coordinates?