The database is indexed by pyramid. This means that the request you enter will be compared against each and every pyramid in each and every koan. Everything is converted to lowercase before parsing the search (ie. Purple = puRPlE = purple). The search syntax used is a subset of CQL. The list of categories and valid descriptors are as follows:
For each of the above categories, there is an associated count.
count.red returns the number of red pyramids in a koancount.floating gives a count of floating pyramids
Caveat: Searching for blue and upright will return all koans with at least 1 blue pyramid and at least 1 upright pyramid, but not necessarily with a pyramid that is both blue and upright. To do a more specific search you must use the pyramid keyword. Groups of terms must be separated by a space and enclosed by quotation marks. You can negate a term by prefacing it with an exclamation point(!).
There are also 3 special categories:
The following relational operators are available:
<, >, <=, >=, =, <>, and, or, not 1) You can also use parentheses () to group queries together.
There is also a special relational keyword called exact. If you want koans consisting of only grounded pyramids, you could enter: position exact grounded. Koans with only medium koans: size exact medium.
uprightupright and color<>greennum>2 and (blue or purple) orientation<>weirdcolor <> (orange and purple and cyan and black and clear and white)color exact greenpyramid=“blue small grounded” and count.stacked = 1pyramid=“blue small !floating”series=pall and pyramid=“small yellow” and pyramid=“small green” and pyramid=“small blue”pallBearer koans with yellow, green, and blue bearers.The forums are the best place to ask for help with the Povray system. Simply visit the Koan Requests forum. As always, you can also email me directly if you have any questions or concerns. Enjoy!
A series is a specific type of koan layout that is duplicated using all the available colours. If you can think of a useful series that is not included here, or you have better code for an existing series, please let me know.
Also, series names are not case sensitive, and it does a broad search. So searching for just “sm” would also return “sml”.
not keyword is actually and-not. You cannot simply say not green. To accomplish this you would have to enter color <> green.