【RampTexture】 RampTexture(渐变纹理),可以是1D/2D纹理. This allows you to accentuate the surface's colors to fake the effects of more bounce light or a more ad.....
分类:
其他好文 时间:
2014-09-18 13:04:43
阅读次数:
250
纯色:SolidColorBrush brush = new SolidColorBrush(Colors.White);window1.Background = brush;渐变色:LinearGradientBrush buttonBrush = new LinearGradientBrush(...
分类:
其他好文 时间:
2014-09-16 12:31:40
阅读次数:
235
【C# Enum,Int,String的互相转换】1、Enum-->String(1)利用Object.ToString()方法:如Colors.Green.ToString()的值是"Green"字符串;(2)利用Enum的静态方法GetName与GetNames: public static.....
分类:
其他好文 时间:
2014-09-15 21:08:09
阅读次数:
174
#yum -y install ImageMagick "安装图片转换的相关工具#convert -geometry 640×480 -colors 14 splash.jpg splash.xpm "转换我使用的图片#cp splash.xpm /boot/grub "复制到grub目录#cd /...
分类:
其他好文 时间:
2014-09-15 11:12:28
阅读次数:
209
ColorTime Limit:2000MSMemory Limit:65536KTotal Submissions:7873Accepted:2565DescriptionBeads of N colors are connected together into a circular neckla...
分类:
其他好文 时间:
2014-09-12 01:10:02
阅读次数:
322
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the integers ...
分类:
编程语言 时间:
2014-09-11 19:26:52
阅读次数:
196
import traceback
import random
import pygame
from pygame.locals import *
pygame.display.init()
pygame.font.init()
sizes = {
"screen" : ( 300, 480 )
}
colors = {
"font" : ( 138, 69, 252 ),
...
分类:
其他好文 时间:
2014-09-09 18:19:59
阅读次数:
350
import traceback
import math
import pygame
from pygame.locals import *
pygame.display.init()
pygame.font.init()
sizes = {
"screen" : ( 300, 480 )
}
colors = {
"line" : ( 255, 255, 255 ),
...
分类:
其他好文 时间:
2014-09-09 16:11:49
阅读次数:
368
import traceback
import pygame
from pygame.locals import *
pygame.display.init()
sizes = {
"screen" : [ 640, 480 ]
}
colors = {
"screen" : ( 255, 255, 255 )
}
screen = pygame.display.set_m...
分类:
其他好文 时间:
2014-09-09 12:36:08
阅读次数:
229
使用Eclipse时,字体大小的设置步骤: 写代码的时候,字体美一点,字号大一点且粗一点,这样能使心情愉悦,同时也对眼睛有利。 Eclipse中的字体设置方法是,选择Window菜单中的Preferences,然后在左侧菜单中选择General中的Colors and Fonts,选中右侧Jav.....
分类:
系统相关 时间:
2014-09-07 17:07:45
阅读次数:
222