color32.java

来自「world wind java sdk 源码」· Java 代码 · 共 39 行

JAVA
39
字号
/* Copyright (C) 2001, 2008 United States Government as represented bythe Administrator of the National Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.formats.dds;/** * 32 bit 8888 ARGB color. * * @author dcollins * @version $Id: Color32.java 8856 2009-02-14 00:51:20Z dcollins $ */public class Color32{    /**     * The alpha component.     */    public int a;    /**     * The red color component.     */    public int r;    /**     * The green color component.     */    public int g;    /**     * The blue color component.     */    public int b;    /**     * Creates a 32 bit 8888 ARGB color with all values set to 0.     */    public Color32()    {    }}

⌨️ 快捷键说明

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