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

📄 depthcomponentintretained.java

📁 JAVA3D矩陈的相关类
💻 JAVA
字号:
/* * $RCSfile: DepthComponentIntRetained.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:17:57 $ * $State: Exp $ */package javax.media.j3d;/** * A 2D array of depth (Z) values in integer format.  Values are in the * range [0,(2**N)-1], where N is the pixel depth of the Z buffer. */class DepthComponentIntRetained extends DepthComponentRetained {    int depthData[];    /**     * Constructs a new integer depth (z-buffer) component object with the     * specified width and height.     * @param width the width of the array of depth values     * @param height the height of the array of depth values     */    void initialize(int width, int height) {        type = DEPTH_COMPONENT_TYPE_INT;        depthData = new int[width * height];        this.width = width;        this.height = height;    }    /**     * Copies the specified depth data to this object.     * @param depthData array of ints containing the depth data     */    void setDepthData(int[] depthData) {	int i;	for (i = 0; i < depthData.length; i++)	    this.depthData[i] = depthData[i];    }    /**     * Copies the depth data from this object to the specified array.     * @param depthData array of ints that will receive a copy of     * the depth data     */    void getDepthData(int[] depthData) {	int i;		for (i = 0; i < this.depthData.length; i++)	    depthData[i] = this.depthData[i];    }    /**     * retrieve depth data from input buffer     */    final void retrieveDepth(int[] buf, int wRead, int hRead) {        int srcOffset, dstOffset, i;         // Yup -> Ydown        for (srcOffset = (hRead - 1) * wRead, dstOffset = 0,                i = 0; i < hRead; i++,             srcOffset -= wRead, dstOffset += width) {             System.arraycopy(buf, srcOffset, depthData, dstOffset, wRead);        }    }   }

⌨️ 快捷键说明

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