ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/src/selection/Token.hpp
(Generate patch)

Comparing trunk/OOPSE-3.0/src/selection/Token.hpp (file contents):
Revision 1967 by tim, Thu Feb 3 23:14:05 2005 UTC vs.
Revision 1972 by tim, Fri Feb 4 22:39:26 2005 UTC

# Line 110 | Line 110 | class Token {
110          // this property is used for the few commands which allow negative integers
111          const static int negnums      = (1 << 11);
112  
113 +        //expression involves coordinates which will change every frame, such as withins
114 +        const static int dynamic        = (1 << 12);
115 +
116          // every property is also valid in an expression context
117          const static int atomproperty      = (1 << 12) | expression | negnums;
118          // every predefined is also valid in an expression context
# Line 131 | Line 134 | class Token {
134          const static int opAnd        = expression |  3;
135          const static int opOr         = expression |  4;
136          const static int opNot        = expression |  5;
137 <        const static int within       = expression |  6;
137 >        const static int within       = expression | dynamic | 6;
138          const static int asterisk     = expression |  7;
139          const static int dot          = expression | 8;
140          const static int all          = expression | 9 ;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines