M33 + other spacial bodies WAY out there...

General discussion about Celestia that doesn't fit into other forums.
Topic author
PrinceScamp
Posts: 13
Joined: 11.10.2005
With us: 18 years 11 months
Location: a supernova, inside my palace, surrounded by my sentinals

M33 + other spacial bodies WAY out there...

Post #1by PrinceScamp » 15.10.2005, 19:00

WHat are they? I am wondering as I can't get close to them. I know one of them is a dust cloud of some kind...
Oh, and it's a great program.
Death among stars

hank
Developer
Posts: 645
Joined: 03.02.2002
With us: 22 years 7 months
Location: Seattle, WA USA

Re: M33 + other spacial bodies WAY out there...

Post #2by hank » 15.10.2005, 19:48

PrinceScamp wrote:WHat are they? I am wondering as I can't get close to them. I know one of them is a dust cloud of some kind...
Oh, and it's a great program.

M33 is a galaxy. It's a very large collection of stars, distributed in a thin disc, with a slightly thicker core, and the brighter stars forming spiral arms. It's much like our own Milky Way galaxy. From a distance, you can't see the individual stars, just the glow of their combined starlight. Similarly the Milky Way as seen from Earth is just a glow, except for the very nearest stars, which we can see individually.

- Hank

Topic author
PrinceScamp
Posts: 13
Joined: 11.10.2005
With us: 18 years 11 months
Location: a supernova, inside my palace, surrounded by my sentinals

Post #3by PrinceScamp » 16.10.2005, 07:43

Ahhh, also wondering what two bookmarkable places are farthest apart but you can go back and forth and goe throufgh the most stars? Kind of like the windows screensaver.
Death among stars

hank
Developer
Posts: 645
Joined: 03.02.2002
With us: 22 years 7 months
Location: Seattle, WA USA

Post #4by hank » 16.10.2005, 08:28

PrinceScamp wrote:Ahhh, also wondering what two bookmarkable places are farthest apart but you can go back and forth and goe throufgh the most stars? Kind of like the windows screensaver.

Here's a quick .celx script to tour the stars at random:

Code: Select all

obs = celestia:getobserver()
stars = celestia:getstarcount()
for i = 1,stars do
  j = math.random(stars)
  obj = celestia:getstar(j)
  obs:goto(obj,20)
  while obs:travelling() do wait(0.5) end
  celestia:flash("Welcome to "..obj:name(),2)
  end

- Hank

Topic author
PrinceScamp
Posts: 13
Joined: 11.10.2005
With us: 18 years 11 months
Location: a supernova, inside my palace, surrounded by my sentinals

Post #5by PrinceScamp » 16.10.2005, 19:46

And how do I use it? I am a scripting illiterate.
EDIT: Just saw the thread. Still have no idea.
Death among stars

hank
Developer
Posts: 645
Joined: 03.02.2002
With us: 22 years 7 months
Location: Seattle, WA USA

Post #6by hank » 16.10.2005, 20:13

PrinceScamp wrote:And how do I use it? I am a scripting illiterate.
EDIT: Just saw the thread. Still have no idea.

Just cut and paste the script code into a text file with a ".celx" file type. Then double-click on the file to launch Celestia and it will run the script.

- Hank

Topic author
PrinceScamp
Posts: 13
Joined: 11.10.2005
With us: 18 years 11 months
Location: a supernova, inside my palace, surrounded by my sentinals

Post #7by PrinceScamp » 16.10.2005, 21:04

As in I create a new text file? And put it where?
Death among stars

hank
Developer
Posts: 645
Joined: 03.02.2002
With us: 22 years 7 months
Location: Seattle, WA USA

Post #8by hank » 16.10.2005, 21:11

PrinceScamp wrote:As in I create a new text file? And put it where?

Yes, create a new text file and paste the script code into it. It shouldn't matter where you put it.

- Hank

Topic author
PrinceScamp
Posts: 13
Joined: 11.10.2005
With us: 18 years 11 months
Location: a supernova, inside my palace, surrounded by my sentinals

Post #9by PrinceScamp » 17.10.2005, 01:43

THanks! :D
Death among stars


Return to “Celestia Users”