readme.txt

来自「详细介绍Java 3D编程的一本电子书」· 文本 代码 · 共 71 行

TXT
71
字号
		Introduction to Programming with Java 3D
			 Application Examples
	--------------------------------------------------------

Applications
	The following .java files are each applications and applets that,
	when executed, bring up a window into which they render 3D shapes
	using Java 3D.

		A3DApplet.java
		Drag.java
		ExAmbientLight.java
		ExAppearance.java
		ExBackgroundColor.java
		ExBackgroundImage.java
		ExBluePrint.java
		ExClip.java
		ExDepthCue.java
		ExDirectionalLight.java
		ExExponentialFog.java
		ExHenge.java
		ExLightBounds.java
		ExLightScope.java
		ExLinearFog.java
		ExPointLight.java
		ExRaster.java
		ExSound.java
		ExSpotLight.java
		ExSwitch.java
		ExText.java
		ExTexture.java
		ExTransform.java
		GearBox.java
		HelloWorld.java
		PickWorld.java
		SphereMotion.java

	Most applications provide a menu bar with a options with which
	to enable or disable example features.

	Most applications respond to mouse drags within the window, which
	rotate, translate, or scale the 3D content.  From the "View" menu,
	select "Examine" to manipulate the content as if it is a shape held
	at arm's length.  Select "Walk" to manipulate the content as if you
	are walking through a scene.

	All source code is commented to highlight features of interest and
	explain tricks and techniques.


Execution
	To execute a Java application from the command-line (DOS or UNIX),
	use the Sun JDK execution tool "java".  Type "java", followed by
	the Java application class name (without the ".java").  For example:

		java ExHenge

	runs the "ExHenge.java" application using the JDK "java" tool.
	The application brings up a window with a menubar and Java 3D canvas.

	Most applications accept a "-d" command-line option to print status
	messages as the application starts up.  For example:

		java ExHenge -d


Caveats
	For notes on Java 3D support issues with this release of the
	tutorial examples, please see the file "caveat.htm" in the
	"notes" folder, up one folder from this one.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?