ezorb capsules
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5
OPAL 0.4.0
OPAL is a high-level interface for low-level physics engines used in games, robotics simulations, and other 3D applications. more>>
OPAL is a high-level interface for low-level physics engines used in games, robotics simulations, and other 3D applications.
Features a simple C++ API, intuitive objects (e.g. Solids, Joints, Motors, Sensors), and XML-based file storage for complex objects.
Main features:
- Open Source
- Cross-platform
- Tested on Linux, Irix, Windows, and Mac OS X
- XML file loading
- OPAL XML exporter for 3ds Max
- Breakable joints
- Linear and angular motion damping
- Per-shape material settings
- Contact groups (define which objects can interact physically)
- Collision detection primitive shapes
- Boxes
- Spheres
- Capsules (i.e. capped cylinders)
- Planes
- User-defined triangular mesh collision detection (best for terrains)
- Joints
- Hinge joints (one rotational degree of freedom)
- Universal joints (two rotational degrees of freedom)
- Ball joints (three rotational degrees of freedom)
- Wheel joints (two rotational degrees of freedom)
- Slider joints (i.e. prismatic joints; one translational degree of freedom)
- Fixed joints (zero degrees of freedom)
- Motors
- Attractor motors (provide gravitational attraction between two objects)
- Geared motors (simplified automobile engines)
- Servo motors (use limited torque to achieve a desired angle or velocity; similar to PD/PID controllers)
- Spring motors (simple damped springs; pull objects to a desired position and/or orientation)
- Thruster motors (provide a constant force on an object)
- Sensors
- Acceleration sensors
- Incline sensors
- Raycast sensors
- Volume sensors
- Event handlers
- Collision event handler (notified when objects collide)
- Joint break event handler (notified when a joint breaks)
- Post-step event handler (notified at the end of each time step)
Enhancements:
- Many bugfixes, unit tests, and enhancements.
- New features: handling a large number of object updates, a new motor, better joint damage monitoring, and enhanced event handling.
- The project has been migrated to Subversion.
<<lessFeatures a simple C++ API, intuitive objects (e.g. Solids, Joints, Motors, Sensors), and XML-based file storage for complex objects.
Main features:
- Open Source
- Cross-platform
- Tested on Linux, Irix, Windows, and Mac OS X
- XML file loading
- OPAL XML exporter for 3ds Max
- Breakable joints
- Linear and angular motion damping
- Per-shape material settings
- Contact groups (define which objects can interact physically)
- Collision detection primitive shapes
- Boxes
- Spheres
- Capsules (i.e. capped cylinders)
- Planes
- User-defined triangular mesh collision detection (best for terrains)
- Joints
- Hinge joints (one rotational degree of freedom)
- Universal joints (two rotational degrees of freedom)
- Ball joints (three rotational degrees of freedom)
- Wheel joints (two rotational degrees of freedom)
- Slider joints (i.e. prismatic joints; one translational degree of freedom)
- Fixed joints (zero degrees of freedom)
- Motors
- Attractor motors (provide gravitational attraction between two objects)
- Geared motors (simplified automobile engines)
- Servo motors (use limited torque to achieve a desired angle or velocity; similar to PD/PID controllers)
- Spring motors (simple damped springs; pull objects to a desired position and/or orientation)
- Thruster motors (provide a constant force on an object)
- Sensors
- Acceleration sensors
- Incline sensors
- Raycast sensors
- Volume sensors
- Event handlers
- Collision event handler (notified when objects collide)
- Joint break event handler (notified when a joint breaks)
- Post-step event handler (notified at the end of each time step)
Enhancements:
- Many bugfixes, unit tests, and enhancements.
- New features: handling a large number of object updates, a new motor, better joint damage monitoring, and enhanced event handling.
- The project has been migrated to Subversion.
Download (1.3MB)
Added: 2006-05-19 License: LGPL (GNU Lesser General Public License) Price:
717 downloads
PyRoe 1.0
PyRoe project is a static partial linker for small helper Python libraries. more>>
PyRoe project is a "static partial linker" for small helper Python libraries.
PyRoe links a Python script with its helper libraries into self-contained Python executable (PyRoe capsule).
Pyroe HOWTO
Assume that your main module is called frob.py and that it uses libraries libfoo.py and libbar.py (directly or indirectly). To pyroize your program, follow these steps (see Figure above for enlightenment):
Create the file Manifest.pyroe containing these three lines:
frob.py
libfoo.py
libbar.py
and put it in a directory together with your source files.
Run pyroe
After pyroe is done, you will find the file frob in the working directory.
The file frob is executable, the invocation
./frob ARGS...
is equivalent to
python frob.py ARGS...
but to run frob you no longer need libfoo.py or libbar.foo lying around.
Pyroe runtime library hidden inside of frob hijacks some command-line options starting with --pyroe-; in particular
frob --pyroe-unpack
will unpack the content of the capsule back to individual files.
For more information see
pyroe --help
The name of PyRoe capsule is always derived from the name of the first file in the Manifest.pyroe.
<<lessPyRoe links a Python script with its helper libraries into self-contained Python executable (PyRoe capsule).
Pyroe HOWTO
Assume that your main module is called frob.py and that it uses libraries libfoo.py and libbar.py (directly or indirectly). To pyroize your program, follow these steps (see Figure above for enlightenment):
Create the file Manifest.pyroe containing these three lines:
frob.py
libfoo.py
libbar.py
and put it in a directory together with your source files.
Run pyroe
After pyroe is done, you will find the file frob in the working directory.
The file frob is executable, the invocation
./frob ARGS...
is equivalent to
python frob.py ARGS...
but to run frob you no longer need libfoo.py or libbar.foo lying around.
Pyroe runtime library hidden inside of frob hijacks some command-line options starting with --pyroe-; in particular
frob --pyroe-unpack
will unpack the content of the capsule back to individual files.
For more information see
pyroe --help
The name of PyRoe capsule is always derived from the name of the first file in the Manifest.pyroe.
Download (0.004MB)
Added: 2006-03-20 License: GPL (GNU General Public License) Price:
1313 downloads
Tunnel 1.2.1
Tunnel project is a simple game involving a ball going down a tunnel. more>>
Tunnel project is a simple game involving a ball going down a tunnel.
Tunnel is a game in which you control a capsule going down a tunnel, shooting other balls in the way. In the process you should pick up power-ups and avoid collisions with enemy balls coming your way.
During the game, you can fire at other balls. They break into fragments which can damage your capsule, so beware.
If the game is too slow on your computer, try using a lower resolution, either using command line options or by modifying the options files.
Tunnel is free software released under the GPL.
<<lessTunnel is a game in which you control a capsule going down a tunnel, shooting other balls in the way. In the process you should pick up power-ups and avoid collisions with enemy balls coming your way.
During the game, you can fire at other balls. They break into fragments which can damage your capsule, so beware.
If the game is too slow on your computer, try using a lower resolution, either using command line options or by modifying the options files.
Tunnel is free software released under the GPL.
Download (0.40MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1087 downloads
H3knix 2.2
H3knix is a small desktop distribution. more>>
H3knix has great performance, a very flexible install, a great package management system, a custom init system which makes booting faster, and good standards that make software compilation simple.
The package management system for h3knix is called capsules. Capsules can install source or binary packages, and/or configure certain aspects of the system.
H3knix has a custom init made specifically for h3knix. This custom init allows for a faster startup and it makes it possible for the custom init tools to operate
H3knix comes with pre-installed applications. At boot you get a collection of preconfigured apps you can use. Most of the software in h3knix are of this nature, but some require minor configuration, ex. xorg.
<<lessThe package management system for h3knix is called capsules. Capsules can install source or binary packages, and/or configure certain aspects of the system.
H3knix has a custom init made specifically for h3knix. This custom init allows for a faster startup and it makes it possible for the custom init tools to operate
H3knix comes with pre-installed applications. At boot you get a collection of preconfigured apps you can use. Most of the software in h3knix are of this nature, but some require minor configuration, ex. xorg.
Download (292MB)
Added: 2005-05-25 License: GPL (GNU General Public License) Price:
1612 downloads
GNU Robbo 0.57
GNU Robbo is a game ported from the Atari XE/XL. more>>
GNU Robbo project is a game ported from the Atari XE/XL.
The player has to rescue Robbo the robot from an unfriendly planet and help him collect all the parts of a capsule so he can go to another level.
<<lessThe player has to rescue Robbo the robot from an unfriendly planet and help him collect all the parts of a capsule so he can go to another level.
Download (0.065MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1057 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ezorb capsules search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed