minq
minq copied to clipboard
a query language for Maya
I have a condition where doing a transform search for all children with like filtering returns an empty result if I try to do an exact match. pseudo hierarchy ```...
Essentially a module `minq.lowercase` which did the same trick as the main `minq` module but exposed all the class names in lower-case format, enabling cameras().where(item.hfov > 50).get(parents) for people who...
it's pretty simple do to this upstream -- but not downstream because of possible branching. Here;s an example for the hierarchy; the history would be similar. ``` def joint_parent(target): #...
there's a lot of examples that look like this: no_uvs = Meshes().where_not(lambda p: any(using(p).get(UVPointCount))) Which is fine - but it's common enough that it would be nice to get rid...
I see a lot of applications like this: ``` Meshes().foreach( lambda p: using (p).get(Connections)) ``` where you want to do a minq expansion in a foreach loop. the `lambda(p): using(p).get....`...
Not quite sure what to do about this one. However I've noticed that the pyCharm debugger will force an early evaluation of a stream if you are stepping through code...