All Packages Class Hierarchy This Package Previous Next Index
Class java.media.j3d.BadTransformException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----java.media.j3d.BadTransformException
- public class BadTransformException
- extends RuntimeException
Indicates an attempt to use a Tranform object that is inappropriate
for the object in which it is being used.
Transforms that are used in scene graph nodes must be congruent
(i.e., they must be angle and length-preserving with no shear and
only uniform scale).
Transforms that are used in the Squash component object must be
affine, but may contain a non-uniform scale and/or a shear.
Most viewing transformations other than those in the scene graph can
only contain translation and rotation.
The projection transformation is allowed to be non-affine, but it
must either be a single point perspective projection or a parallel
projection.
-
BadTransformException()
- Create the exception object with default values..
-
BadTransformException(String)
- Create the exception object that outputs message.
BadTransformException
public BadTransformException()
- Create the exception object with default values..
BadTransformException
public BadTransformException(String str)
- Create the exception object that outputs message.
- Parameters:
- str - the message string to be output.
All Packages Class Hierarchy This Package Previous Next Index