Space Exploration dev 6 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Space Exploration dev 6 (Default branch)
# 1  
Old 03-24-2008
Space Exploration dev 6 (Default branch)

ImageSpace Exploration is a simple space explorationgame. It's similar to Strange Adventures inInfinite Space and also draws on games like EscapeVelocity, Starflight, and Star Control.License: FreewareChanges:
Compared to the previous version, dev 6 has much better performance, and you can now choose to run the game full-screen or in a window. You can also run the game at your native resolution, which makes for much crisper graphics and more map real estate. Specifically, if the game doesn't want to go full-screen for you, try using "native resolution" and "force fullscreen" in the settings. There are also new encounters.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. AIX

How to increase space /dev/hd4?

A check disk space and find /dev/hd4 used 99%. How to increase space. Thank you for advice. /home/tecsys > df Filesystem 512-blocks Free %Used Iused %Iused Mounted on /dev/hd4 1048576 20624 99% 5977 68% / /dev/hd2 6815744 653032 91% 59194 ... (4 Replies)
Discussion started by: yapcs88
4 Replies

2. What is on Your Mind?

Is Unix/Linux used in space exploration?

I was looking at some Wikipedia articles on spacecrafts and robotic probes and found a reference of an OS named "VxWorks" which I have never heard of before; according to the article this OS has been used in a few NASA projects. So now I'm wondering what OS flavor or branch all those amazing... (8 Replies)
Discussion started by: verdepollo
8 Replies

3. SCO

Insuficient space on /dev SCO 5.5

Unix SCO 5.5 Insuficient space on /dev - when I run df I get /dev 99% usage. I have a large number of users (most of them are not with the company since Cretacic) and I want to delete them to make more space. When I run rmuser I get rmuser: not found if I type su root rmuser rmuser: The... (6 Replies)
Discussion started by: tzveistein
6 Replies

4. SCO

No space on /dev/hd 1/42

No one is able to log in. What can I try? Help!:( (1 Reply)
Discussion started by: ibqti
1 Replies

5. UNIX for Advanced & Expert Users

NOTICE: HTFS: No space on dev hd (1/42)

If somebody solve this error please help me! Thanks in advance! :confused: (7 Replies)
Discussion started by: FCollet
7 Replies

6. SCO

No space on dev HD (1/42)

Good Evening to all, I am having a problem with our unix server, I give you a little history. last we the logins started getting slower and slower, when we tried to print nothing came out on the network printer, the system had an error ("printer file close error unit=0). Checking... (3 Replies)
Discussion started by: berkmillionare
3 Replies
Login or Register to Ask a Question
Geo::Space(3pm) 					User Contributed Perl Documentation					   Geo::Space(3pm)

NAME
Geo::Space - A collection of various items INHERITANCE
Geo::Space is a Geo::Shape SYNOPSIS
my $island1 = Geo::Line->filled(...); my $island2 = Geo::Space->new(...); my $islands = Geo::Space->new($island1, $island2) DESCRIPTION
Where a Geo::Surface can only contains sets of nested polygons, the Space can contain anything you like: lines, points, and unrelated polygons. METHODS
Constructors $obj->new([COMPONENTS], [OPTIONS]) Geo::Space->new([COMPONENTS], [OPTIONS]) When called as instance method, some defaults are copied from the object where the call is made upon. Usually called as class method. COMPONENTS are Math::Polygon, Math::Polygon::Surface, Geo::Point, Geo::Line, Geo::Surface, Geo::Space objects. Option--Defined in--Default proj Geo::Shape see Geo::Proj::defaultProjection() . proj => LABEL Attributes $obj->component(INDEX, [INDEX, ...]) Returns the component (or components) with the specified INDEX(es). One Geo::Shape object in scalar context, and multiple in list context. $obj->components Returns a list of Geo::Shape objects, all located in this space. $obj->lines Returns a list of Geo::Line objects, which are defined as separate components. $obj->nrComponents Returns the number of components. $obj->onlyLines Returns true when all components are lines; Geo::Line objects. $obj->onlyPoints Returns true when all components are points; Geo::Point objects. $obj->onlyRings Returns true when all components are closed lines; Geo::Line objects each defined as ring. $obj->points Returns a list of Geo::Point objects, which are defined as separate components. $obj->proj See "Attributes" in Geo::Shape $obj->proj4 See "Attributes" in Geo::Shape Projections $obj->in(LABEL|'utm') See "Projections" in Geo::Shape $obj->projectOn(NICK, POINTS) See "Projections" in Geo::Shape Geometry $obj->area Returns the area enclosed by the combined components. Only useful when the points are in some orthogonal projection. $obj->bbox See "Geometry" in Geo::Shape $obj->bboxCenter See "Geometry" in Geo::Shape $obj->bboxRing([XMIN, YMIN, XMAX, YMAX, [PROJ]]) Geo::Space->bboxRing([XMIN, YMIN, XMAX, YMAX, [PROJ]]) See "Geometry" in Geo::Shape $obj->distance(OBJECT, [UNIT]) See "Geometry" in Geo::Shape $obj->perimeter The length of the outer polygons of all components. Only useful in a orthogonal coordinate systems. Display $obj->deg2dm(DEGREES, POS, NEG) Geo::Space->deg2dm(DEGREES, POS, NEG) See "Display" in Geo::Shape $obj->deg2dms(DEGREES, POS, NEG) Geo::Space->deg2dms(DEGREES, POS, NEG) See "Display" in Geo::Shape $obj->dms2deg(DMS) Geo::Space->dms2deg(DMS) See "Display" in Geo::Shape $obj->toString([PROJECTION]) Returns a string representation of the line, which is also used for stringification. example: DIAGNOSTICS
Error: distance calculation not implemented between a $kind and a $kind Only a subset of all objects can be used in the distance calculation. The limitation is purely caused by lack of time to implement this. Error: in() not implemented for a $class SEE ALSO
This module is part of Geo-Point distribution version 0.93, built on May 19, 2010. Website: http://perl.overmeer.net/geo/ All modules in this suite: "Geo::Point", "Geo::Proj4", "Geo::WKT", "Math::Polygon", "Geo::GML", "Geo::ISO19139", "Geo::EOP", "Geo::Format::Envisat", and "Geo::Format::Landsat". Please post questions or ideas to the mailinglist at http://geo-perl@list.hut.fi LICENSE
Copyrights 2005-2010 by Mark Overmeer. For other contributors see ChangeLog. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html perl v5.14.2 2010-05-19 Geo::Space(3pm)