llVecNorm() now returns a zero-length vector when one is supplied as input. Addresses Mantis #4752

0.7-release
dahlia 2010-07-08 11:12:23 -07:00
parent d06b75fe3b
commit 5f932605dc
1 changed files with 2 additions and 7 deletions

View File

@ -450,13 +450,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_Vector llVecNorm(LSL_Vector v)
{
m_host.AddScriptLPS(1);
double mag = LSL_Vector.Mag(v);
LSL_Vector nor = new LSL_Vector();
nor.x = v.x / mag;
nor.y = v.y / mag;
nor.z = v.z / mag;
return nor;
m_host.AddScriptLPS(1);
return LSL_Vector.Norm(v);
}
public LSL_Float llVecDist(LSL_Vector a, LSL_Vector b)