⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scenegraphcycleexception.java

📁 JAVA3D矩陈的相关类
💻 JAVA
字号:
/* * $RCSfile: SceneGraphCycleException.java,v $ * * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved. * * Use is subject to license terms. * * $Revision: 1.4 $ * $Date: 2007/02/09 17:18:19 $ * $State: Exp $ */package javax.media.j3d;/** * Indicates a graph that contains a cycle. * Java 3D scene graphs are directed acyclic graphs and, as such, do not  * permit cycles. * This exception is thrown when a graph containing a cycle: * <ul> * <li> is made live * <li> is compiled * <li> is cloned * <li> has getBounds() called on it. * </ul> */public class SceneGraphCycleException extends IllegalSceneGraphException{/** * Create the exception object with default values. */  public SceneGraphCycleException(){  }/** * Create the exception object that outputs message. * @param str the message string to be output. */  public SceneGraphCycleException(String str){    super(str);  }}

⌨️ 快捷键说明

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