From 375163a6fece8b3a57c7555246abe8338223a599 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Tue, 29 Apr 2008 14:04:55 +0000 Subject: * Spring cleaning. * Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned. --- OpenSim/Framework/sLLVector3.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Framework/sLLVector3.cs') diff --git a/OpenSim/Framework/sLLVector3.cs b/OpenSim/Framework/sLLVector3.cs index dca94b5..c0bafb2 100644 --- a/OpenSim/Framework/sLLVector3.cs +++ b/OpenSim/Framework/sLLVector3.cs @@ -33,6 +33,10 @@ namespace OpenSim.Framework [Serializable] public class sLLVector3 { + public float x = 0; + public float y = 0; + public float z = 0; + public sLLVector3() { } @@ -43,9 +47,5 @@ namespace OpenSim.Framework y = v.Y; z = v.Z; } - - public float x=0; - public float y=0; - public float z=0; } -} +} \ No newline at end of file -- cgit v1.1