nativedrawable.java
来自「JAVA3D矩陈的相关类」· Java 代码 · 共 33 行
JAVA
33 行
/* * $RCSfile: NativeDrawable.java,v $ * * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved. * * Use is subject to license terms. * * $Revision: 1.3 $ * $Date: 2007/02/09 17:18:11 $ * $State: Exp $ */package javax.media.j3d;/** * Graphics Drawable objects for native rendering pipeline. */class NativeDrawable implements Drawable { // Native drawable pointer. On Windows it is the native HDC. // On X11 it is the handle to the native X11 drawable. private long nativeDrawable; NativeDrawable(long nativeDrawable) { this.nativeDrawable = nativeDrawable; } long getNativeDrawable() { return nativeDrawable; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?