Created by: portnov
Most obvious ways of "parametrically select" something are:
- Select "leftmost" or "rightmost" vertices. More exactly, select vertices that have (direction, Vertex) >= X, where direction is specified vector and X is some number. And also select edges and faces that include selected vertices.
- Select by normal direction. Select faces (and faces?), that have (Normal(Face), direction) >= X. And also select vertices that are included into selected faces.
- Select "in range". Select vertices, that have distance(Vertex, Center) <= Radius. And also select edges and faces that include selected vertices.
See also #1320 (closed) .