Photography with Feeling

Latest

Picture of Vegas

Las Vegas Casino

I sometimes forget what it was like to be able to smoke indoors. That was until a recent trip to Las Vegas! It was strange at first seeing people still smoking in the casino’s, I wonder how long before they put a stop to this? Probably not in the near future or until they can offer an alternative without people having to leave the tables. They should take a look at this E-Lites review and give them out with the free drinks for gamblers!

Picture of Satsumas

satsumas for vitamin C

Eating fruit and drinking fruit juices help us to feel great. Find out which juicing machine is best for making drinks from all kinds of different fruits in these juicer reviews. Look after your health before it’s gone.

Picture of Grapes

grapes for winemaking

The best wines are only made from the best grapes. The best wine grapes only come from the best vineyards. Only the best wines should be included in a wine of the month club.

Picture of a Shotgun

shotgun being reloaded

(Photography credit: marco900) A photograph showcasing a gunsmith holding a double barreled shotgun, commonly used for hunting. Care and upkeep of this type of gun is commonly taught in gunsmithing schools.

Picture of Psoriasis

This site claims to offer a treatment for psoriasis. Apparently 83% of patients using this technique get the results they are after.

Picture of Refrigerator

This image clearly demonstrates the type of capacity a freezerless refrigerator offers homeowners. Thanks to Jim at freezerlessrefrigerator.net for contributing this photo.

Picture of Angels Landing

St George Real Estate

St George is located miles within range of beautiful Zions National Park. To learn more about the local area check our the St George Utah Real Estate house finder. It will help you find rentals and homes close to this magnificent site.

Picture of Cat

Cat looking up in hope

I present you a nice funny little kitten looking up “for a hope” from the dark. Some people love cats and others hate them. These days we can stop them from making our homes smell by using an automatic litter box.

Picture of Sunset

Relax with a juice

Nothing better than a fine juice made with my Breville BJE200XL to watch the sunset at the end of a fine working day. It is indeed great to love what you do!

Picture of Green Tea – It Lowers Cholesterol Levels

image of dried green tea leaves

So the guys at “Cholesterol Levels” asked me to take a picture of green tea. Apparently they are doing some kind of research on how green tea affects cholesterol, whether it can help lower the cholesterol levels to some degree, and they need a close-up picture of green tea to use it for their banner/featured image. The tea is called “Temple of Heaven Gunpowder” green tea. I used +2 optics on it to get really close, never thought tea looks like this up close. They didn’t tell me when exactly they are going to publish the article, but it should be sometimes soon, chances are by the time you read this it has already been published. The title should be something with green tea & cholesterol. Check it out here Cholesterol Levels. You can read on about heart health, healthy diet, exercise & all that good stuff as well; just some overall good read about how to stay healthy &, obviously as the website name suggests, ways to reduce cholesterol naturally.

JavaOpenGL

Copyright 1997 Jack Palevich, All Rights Reserved

Introduction

JavaOpenGL is a set of Java classes that let you program the OpenGL API on a Windows 95 or Windows NT box. Most of the Open GL API is supported.

JavaOpenGL works both with the stock OpenGL32.dll file supplied by Microsoft, and the 3Dfx specific version provided as part of Id Software’s GLQuake.

How to Install JavaOpenGL

Requirements:

In order to install and use JavaOpenGL, you’ll need the following:

* A Java VM. You can use either Java 1.0.2 or Java 1.1. You can buy a Java VM, or you can get one for free from JavaSoft.
* Windows 95 or Windows NT 4.0. You can get Windows 95 from Microsoft.

Optionally, you might also want:

* A 3Dfx compatible graphics card. You can get a list of vendors from 3Dfx Interactive.
* Glide 2.3 or later graphics device driver. You can get Glide from 3Dfx Interactive.

Downloading

JavaOpenGL is available at http://www.palevich.com/3dfx/JavaOpenGL.zip. To use it, unpack the ZIP file using a program like WinZip. When you unpack it, be sure to unpack it with the directory structure intact.

Once you’ve unpacked the ZIP file, cd to the JavaOpenGL directory and run Install95.bat or InstallNT.bat, depending upon your OS. This will copy the JavaOpenGL dll file to your system directory.

Running the Demo

In order to run the demo, you must edit the file JavaMesaTests/Tex.bat:

1. Change the JAVADIR variable to be wherever your Java VM is located.

To run the demo, double-click on Tex.bat. The demo will run, and you will see a window open that says “Open GL”. The window should show a spinning texture mapped cube. If you have a 3Dfx VooDoo card, the window will be blank, and you should see the animation on the VooDoo output. (To Quit close the window. If you can’t see the window because you’ve got a VooDoo card, type ESC, ‘Q’, or Shift+F4)

If you get an error that says something like “program not found”, check that you’ve edited the JAVADIR variable in Tex.bat.

If you get an error that says something like “Couldn’t link class”, check that you’ve installed OpenGL32.dll, and that you’ve run install.bat to install the JavaOpenGL dll.

Programming using JavaOpenGL

About the JavaOpenGL API

JavaOpenGL is based upon:

* An Unofficial port of OpenGL to Java – The Java to Open GL routines.

If you have a 3Dfx VooDoo or VooDoo Rush card, you can get a hardware accelerated version of the OpenGL32.dll library. To use it, copy it to the same directory as the Java program you’ve written. e.g. to use it with the tests, copy it to the JavaMesaTests directory.

Back to the homepage.