aboutsummaryrefslogtreecommitdiffstats
path: root/www/j3d1_4/api-changes.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/j3d1_4/api-changes.html')
-rw-r--r--www/j3d1_4/api-changes.html306
1 files changed, 5 insertions, 301 deletions
diff --git a/www/j3d1_4/api-changes.html b/www/j3d1_4/api-changes.html
index 28a106d..4cdc828 100644
--- a/www/j3d1_4/api-changes.html
+++ b/www/j3d1_4/api-changes.html
@@ -1,310 +1,14 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-
-<!--
-/*
- * $RCSfile$
- *
- * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
- *
- * Use is subject to license terms.
- *
- * $Revision$
- * $Date$
- * $State$
- */
- -->
-
-<!--
-************************************************************************
-*
-* NOTE: This file must be edited by hand to avoid Mozilla Composer
-* putting all preformatted lines into a single line with "<br>"
-* replacing ASCII newlines, making it impossible to do a meaningful
-* "diff" operation.
-*
-************************************************************************
--->
-
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
- <title>List of Proposed Java 3D 1.4 API Changes</title>
+ <title>Obsolete Page</title>
</head>
<body>
-<h2>List of Proposed Java&nbsp;3D<sup><font size="-2">TM</font></sup>
-1.4 API Changes</h2>
-<p>This document conatains a list of the proposed API changes to the
-Java&nbsp;3D<sup><font size="-2">TM</font></sup> 1.4 API
-that deviate from the 1.3 API.
-</p>
-<p>Note: the most up-to-date version of
-this list is in the <code>dev-1_4</code> branch of the
-<code>docs/api-changes-1_4.txt</code>
-file, which is updated to record the addition or deprecation of
-any public or protected class, interface, field, constructor, or method
-to the Java&nbsp;3D API.
-</p>
-<p>No incompatible changes to the Java&nbsp;3D 1.3 API are allowed.</p>
-<pre>
-I. New/deprecated fields, constructors, methods
-
- Canvas3D
- --------
- New methods:
- public boolean isShadingLanguageSupported(int shadingLanguage)
-
-
- SceneGraphObject
- ----------------
- New methods:
- public void setName(String name)
- public String getName()
-
-
- GeometryArray (incomplete list)
- -------------
- New fields:
- public static final int ALLOW_VERTEX_ATTR_READ
- public static final int ALLOW_VERTEX_ATTR_WRITE
- public static final int VERTEX_ATTRIBUTES
-
- New constructors:
- public GeometryArray(int vertexCount,
- int vertexFormat,
- int texCoordSetCount,
- int[] texCoordSetMap,
- int vertexAttrCount,
- int[] vertexAttrSizes)
-
- New methods:
- public int getVertexAttrCount()
- public void getVertexAttrSizes(int[] vertexAttrSizes)
- public void setVertexAttr(int vertexAttrNum, int index,
- float[] vertexAttr)
- public void setVertexAttr(int vertexAttrNum, int index,
- Point2f vertexAttr)
- public void setVertexAttr(int vertexAttrNum, int index,
- Point3f vertexAttr)
- public void setVertexAttr(int vertexAttrNum, int index,
- Point4f vertexAttr)
- public void setVertexAttrs(int vertexAttrNum, int index,
- float[] vertexAttrs)
- public void setVertexAttrs(int vertexAttrNum, int index,
- Point2f[] vertexAttrs)
- public void setVertexAttrs(int vertexAttrNum, int index,
- Point3f[] vertexAttrs)
- public void setVertexAttrs(int vertexAttrNum, int index,
- Point4f[] vertexAttrs)
- public void setVertexAttrs(int vertexAttrNum, int index,
- float[] vertexAttrs,
- int start, int length)
- public void setVertexAttrs(int vertexAttrNum, int index,
- Point2f[] vertexAttrs,
- int start, int length)
- public void setVertexAttrs(int vertexAttrNum, int index,
- Point3f[] vertexAttrs,
- int start, int length)
- public void setVertexAttrs(int vertexAttrNum, int index,
- Point4f[] vertexAttrs,
- int start, int length)
- public void getVertexAttr(int vertexAttrNum, int index,
- float[] vertexAttr)
- public void getVertexAttr(int vertexAttrNum, int index,
- Point2f vertexAttr)
- public void getVertexAttr(int vertexAttrNum, int index,
- Point3f vertexAttr)
- public void getVertexAttr(int vertexAttrNum, int index,
- Point4f vertexAttr)
- public void getVertexAttrs(int vertexAttrNum, int index,
- float[] vertexAttrs)
- public void getVertexAttrs(int vertexAttrNum, int index,
- Point2f[] vertexAttrs)
- public void getVertexAttrs(int vertexAttrNum, int index,
- Point3f[] vertexAttrs)
- public void getVertexAttrs(int vertexAttrNum, int index,
- Point4f[] vertexAttrs)
- public void setInitialVertexAttrIndex(int vertexAttrNum,
- int initialVertexAttrIndex)
- public int getInitialVertexAttrIndex(int vertexAttrNum)
- public void setVertexAttrRefBuffer(int vertexAttrNum, J3DBuffer vertexAttrs)
- public J3DBuffer getVertexAttrRefBuffer(int vertexAttrNum)
- public void setVertexAttrRefFloat(int vertexAttrNum, float[] vertexAttrs)
- public float[] getVertexAttrRefFloat(int vertexAttrNum)
-
-
- TriangleArray
- -------------
- New constructors:
- public TriangleArray(int vertexCount,
- int vertexFormat,
- int texCoordSetCount,
- int[] texCoordSetMap,
- int vertexAttrCount,
- int[] vertexAttrSizes)
-
-
- Node
- ----
- New fields:
- public static final int ALLOW_PARENT_READ
- public static final int ALLOW_LOCALE_READ
-
- New methods:
- public Locale getLocale()
-
-
- VirtualUniverse
- ---------------
- New methods:
- public void addGraphStructureChangeListener(GraphStructureChangeListener listener)
- public void removeGraphStructureChangeListener(GraphStructureChangeListener listener)
- public void addShaderErrorListener(ShaderErrorListener listener)
- public void removeShaderErrorListener(ShaderErrorListener listener)
-
-
- Locale
- ------
- New methods:
- public PickInfo[] pickAll( int mode, int flags, PickShape pickShape )
- public PickInfo[] pickAllSorted( int mode, int flags, PickShape pickShape )
- public PickInfo pickClosest( int mode, int flags, PickShape pickShape )
- public PickInfo pickAny( int mode, int flags, PickShape pickShape )
-
-
- BranchGroup
- -----------
- New methods:
- public PickInfo[] pickAll( int mode, int flags, PickShape pickShape )
- public PickInfo[] pickAllSorted( int mode, int flags, PickShape pickShape )
- public PickInfo pickClosest( int mode, int flags, PickShape pickShape )
- public PickInfo pickAny( int mode, int flags, PickShape pickShape )
-
-
- Sensor
- ------
- Deprecated fields:
- public static final int PREDICT_NONE
- public static final int PREDICT_NEXT_FRAME_TIME
- public static final int NO_PREDICTOR
- public static final int HEAD_PREDICTOR
- public static final int HAND_PREDICTOR
-
- Deprecated methods:
- public void setPredictor(int predictor)
- public int getPredictor()
- public void setPredictionPolicy(int policy)
- public int getPredictionPolicy()
- public void getRead(Transform3D read, long deltaT)
-
-
- RenderingAttributes
- -----------
- New fields:
- public static final int ALLOW_DEPTH_TEST_FUNCTION_READ
- public static final int ALLOW_DEPTH_TEST_FUNCTION_WRITE
-
- New constructors:
- public RenderingAttributes(boolean depthBufferEnable,
- boolean depthBufferWriteEnable,
- int depthTestFunction,
- float alphaTestValue,
- int alphaTestFunction,
- boolean visible,
- boolean ignoreVertexColors,
- boolean rasterOpEnable,
- int rasterOp)
-
- New methods:
- public void setDepthTestFunction(int function)
- public int getDepthTestFunction()
-
-
-II. Reparented classes
-
- NONE
-
-
-III. New classes and interfaces (in javax.media.j3d)
-
- ShaderAppearance
- ----------------
- public class ShaderAppearance extends Appearance
-
- ShaderAttributeSet
- ------------------
- public class ShaderAttributeSet extends NodeComponent
-
- ShaderAttribute
- ---------------
- public abstract class ShaderAttribute extends NodeComponent
-
- ShaderAttributeBinding
- ----------------------
- public class ShaderAttributeBinding extends ShaderAttribute
-
- ShaderAttributeObject
- ---------------------
- public abstract class ShaderAttributeObject extends ShaderAttribute
-
- ShaderAttributeValue
- --------------------
- public class ShaderAttributeValue extends ShaderAttributeObject
-
- ShaderAttributeArray
- --------------------
- public class ShaderAttributeArray extends ShaderAttributeObject
-
- Shader
- ------
- public abstract class Shader extends NodeComponent
-
- SourceCodeShader
- ----------------
- public class SourceCodeShader extends Shader
-
- ShaderProgram
- -------------
- public abstract class ShaderProgram extends NodeComponent
-
- CgShaderProgram
- ---------------
- public class CgShaderProgram extends ShaderProgram
-
- GLSLShaderProgram
- -----------------
- public class GLSLShaderProgram extends ShaderProgram
-
- ShaderError
- -----------
- public class ShaderError extends Object
-
- ShaderErrorListener
- -------------------
- public interface ShaderErrorListener
-
- GraphStructureChangeListener
- ----------------------------
- public interface GraphStructureChangeListener
-
- PickInfo
- --------
- public class PickInfo extends Object
-
- PickInfo.IntersectionInfo
- -------------------------
- public class PickInfo.IntersectionInfo extends Object
-
-
-IV. Deprecated classes and interfaces (in javax.media.j3d)
-
- CompressedGeometry
- CompressedGeometryHeader
- PickPoint
- Morph
-</pre>
-<p><font color="gray">Page last updated &#8212;
-$Date$
-</font></p>
+<h2>Obsolete Page</h2>
+<p>This page is obsolete. Click <a
+ href="http://wiki.java.net/bin/view/Javadesktop/Java3DRoadmap">here</a>
+to go the Java 3D Roadmap page of the Java 3D Wiki.</p>
</body>
</html>