mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Changed a couple of comments to be more generic
This commit is contained in:
@@ -172,7 +172,7 @@ namespace OpenSim.Region.PhysicsModule.ODE
|
||||
/// <param name="req"></param>
|
||||
private void RayCast(ODERayCastRequest req)
|
||||
{
|
||||
// UBIT: limit ray lenght or collisions will take all avaiable stack space
|
||||
// NOTE: limit ray lenght or collisions will take all avaiable stack space
|
||||
// this value may still be too large, depending on machine configuration
|
||||
// of maximum stack
|
||||
float len = req.length;
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
// Ubit changes for varsize regions
|
||||
// changes for varsize regions
|
||||
// note that raycasts need to have limited range
|
||||
// (even in normal regions)
|
||||
// or aplication thread stack may just blowup
|
||||
@@ -803,7 +803,7 @@ namespace OpenSim.Region.PhysicsModule.ODE
|
||||
spaceGridMaxX = (int)(WorldExtents.X * spacesPerMeterX);
|
||||
spaceGridMaxY = (int)(WorldExtents.Y * spacesPerMeterY);
|
||||
|
||||
// ubit: limit number of spaces
|
||||
// note: limit number of spaces
|
||||
if (spaceGridMaxX > 24)
|
||||
{
|
||||
spaceGridMaxX = 24;
|
||||
|
||||
Reference in New Issue
Block a user