refactor: use LSL_Vector(Vector3) constructor in llGroundNormal()

0.7.4-extended
Justin Clark-Casey (justincc) 2013-03-14 22:28:40 +00:00
parent 051f21ff65
commit 1c12697232
1 changed files with 1 additions and 1 deletions

View File

@ -6066,7 +6066,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
//I believe the crossproduct of two normalized vectors is a normalized vector so //I believe the crossproduct of two normalized vectors is a normalized vector so
//this normalization may be overkill //this normalization may be overkill
return new LSL_Vector(vsn.X, vsn.Y, vsn.Z); return new LSL_Vector(vsn);
} }
public LSL_Vector llGroundContour(LSL_Vector offset) public LSL_Vector llGroundContour(LSL_Vector offset)