Jump to content
  • 0

How do I find the coordinates of a sim?


giar Baddingham
 Share

You are about to reply to a thread that has been inactive for 4593 days.

Please take a moment to consider if this thread is worth bumping.

Question

3 answers to this question

Recommended Posts

  • 0

There are two answers to that question.  The answer that most people think of is in terms of coordinates relative to the sim's SW corner, which has coordinates <0.0,0.0,0.0>.   Your position in the sim is measured in meters to the east and north of that point, and Up from it.  So <100.0, 180.0.,50.> is 100.0 meters east of the SW corner, 180.0 meters north of it, and 50.0 meters above it.

The other answer is that the sim itself has a position on the world grid.  Again, that's in meters, relative to the GLOBAL <0.0,0.0,0.0>.  That is a point on the Da Boom sim that is arbitrarily defined as GREAT ZERO.  (Visit!  It's a Linden Playground.)

If you want to know where you are standing, put this script into a prim and click on it...

default{    touch_start(integer total_number)    {        llSay(0,"My position here is " + (string)llGetPos() + " relative to this sim's SW corner.");        llSay(0,"This sim's SW corner is located at " +(string)llGetRegionCorner()+ " on the world map.");    }}

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 4593 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...