Subversion Repositories gelsvn

Rev

Rev 89 | Rev 443 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 89 Rev 299
Line 80... Line 80...
80
		/** Discriminators. These values are delta[i]*dir[j] where delta[i]
80
		/** Discriminators. These values are delta[i]*dir[j] where delta[i]
81
				is the distance from the origin of the ray to the current position
81
				is the distance from the origin of the ray to the current position
82
				along the i axis multiplied by two). dir[j] is the direction vector
82
				along the i axis multiplied by two). dir[j] is the direction vector
83
				coordinate j. */
83
				coordinate j. */
84
	
84
	
85
		long long int disc[3][3];
85
		__int64 disc[3][3];
86
 
86
 
87
		/** The current cell containing the ray. This value along with the 
87
		/** The current cell containing the ray. This value along with the 
88
				discriminators mentioned above represent the state of a ThreeDDDA. */
88
				discriminators mentioned above represent the state of a ThreeDDDA. */
89
		CGLA::Vec3i cell;
89
		CGLA::Vec3i cell;
90
 
90