some more changes on lslapi, mostly style

This commit is contained in:
UbitUmarov
2023-02-10 13:44:09 +00:00
parent c3b0c49cd0
commit 37ce17f927
3 changed files with 469 additions and 654 deletions

View File

@@ -390,6 +390,8 @@ namespace OpenSim.Region.ScriptEngine.Shared
v1.z * scale + v2.z * invscale
);
}
public static readonly Vector3 Zero = new Vector3(0, 0, 0);
#endregion
}
@@ -662,6 +664,8 @@ namespace OpenSim.Region.ScriptEngine.Shared
c.s = a.s * b.s - a.x * b.x - a.y * b.y - a.z * b.z;
return c;
}
public static readonly Quaternion Identity = new (0, 0, 0, 1);
}
[Serializable]