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

📄 targetsinterface.java

📁 JAVA3D矩陈的相关类
💻 JAVA
字号:
/* * $RCSfile: TargetsInterface.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:25 $ * $State: Exp $ */package javax.media.j3d;import java.util.ArrayList;interface TargetsInterface {    static final int TRANSFORM_TARGETS =	0;    static final int SWITCH_TARGETS =		1;    // used by Switch, TransformGroup and SharedGroup    abstract CachedTargets getCachedTargets(int type, int index, int child);    abstract void resetCachedTargets(int type, CachedTargets[] newCt, int child);    // used by TransformGroup and SharedGroup    abstract int getTargetThreads(int type);    abstract void updateCachedTargets(int type, CachedTargets[] newCt);    abstract void computeTargetThreads(int type, CachedTargets[] newCt);    abstract void updateTargetThreads(int type, CachedTargets[] newCt);    abstract void propagateTargetThreads(int type, int childTargetThreads);    abstract void copyCachedTargets(int type, CachedTargets[] newCt);    // used by Switch and SharedGroup    abstract ArrayList getTargetsData(int type, int index);}

⌨️ 快捷键说明

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