When making a query to say, polyListComponentConversion, it would be nice to not have a result where there's a range specifier and just have a 1 to 1 result. Example: // Result Given Face 206: Indices(49, 104, 76) | polySurface2.map[240] = 104 Face 206: Indices(49, 104, 76) | polySurface2.map[251:252] = 49, 76 // Preferred Result Face 206: Indices(49, 104, 76) | polySurface2.map[240] = 104 Face 206: Indices(49, 104, 76) | polySurface2.map[251] = 49 Face 206: Indices(49, 104, 76) | polySurface2.map[252] = 76 Example 2: // Result Given Face 206: Indices(49, 104, 76) | polySurface2.map[250:252] = 104, 49, 76 // Preferred Result Face 206: Indices(49, 104, 76) | polySurface2.map[250] = 104 Face 206: Indices(49, 104, 76) | polySurface2.map[251] = 49 Face 206: Indices(49, 104, 76) | polySurface2.map[252] = 76 Add a query flag for the results/return list/etc.. to be expanded instead of grouped with ranges. Would make life a little easier without having to also parse through ranges on results.
Show More