Subversion Repositories gelsvn

Rev

Rev 207 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 207 Rev 290
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