今天来说一下颜色
(一)现在开始进行设置颜色,一般的颜色是由rgb组成的,但是在这里会多一个透明度的参数。(其实就是RGB)
void glColor3f(GLfloat red, GLfloat green, GLfloat blue);
void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);...
分类:
其他好文 时间:
2015-05-27 10:23:51
阅读次数:
214
CSDN圈子里大牛太多,作为一名90后,我只是想在这里留下自己每一个成长的脚印。也许当我老了,抑或N年以后再回过头来看看自己年轻时的足迹,一定别有一番感触!此篇谨献给一直都在拼命努力的自己!
一直在学习OS的相关知识,但学的一直都是理论,读了几遍《Modren Operating Systems》,以及《操作系统之哲学原理》和《深入理解LInux内核》,对OS算是很有感情吧。再加之...
分类:
其他好文 时间:
2015-05-27 10:24:05
阅读次数:
208
对于一个三角形,我要给它正反面不同的颜色。然后通过旋转,看出它的效果。
我只想到了2种方法,下面我来写一下这两种方法。
第一种方法,通过角度的判断重设glColor3f的参数(这种方法局限性很大,不推荐,不喜欢的可以直接跳过看第二种)。
对于一个平面,我们知道,当它旋转到一定角度的时候,它就变成了一条线,那么,我们只要对这个角度进行一下判断就可以了。
下面是我的测试代码:
#includ...
分类:
其他好文 时间:
2015-05-27 10:24:37
阅读次数:
121
绘制
构造方法
自定义view需要继承View类,重写两个构造方法
//用在代码new该view对象,初始化
public MyView(Context context) {
super(context);
init();
}
//一般添加构造---》view放进布局,系统实例化
public MyView(Cont...
分类:
移动开发 时间:
2015-05-27 10:25:16
阅读次数:
193
vb6是一个典型的拖控件加代码的编程代表,因此也一直被认为难登大雅之堂,但是,在vb6中可以完全纯粹地使用代码控制这个窗体与窗体的控件。这样生成出来的控件位置摆放精确无比,无须拖好控件之后,再利用工具栏的“格式”菜单慢慢地调整大小。这种方式的确定是声明一个控件要耗费大量的代码,但其实Java中的Swing,HTML+CSS排放控件,比这好不了多少。
当然,比vc6中mfc的代码简单了不少,具体见...
分类:
其他好文 时间:
2015-05-27 10:25:45
阅读次数:
468
Problem Description
Given a number N, you are asked to count the number of integers between A and B inclusive which are relatively prime to N.
Two integers are said to be co-prime or relatively prime...
分类:
其他好文 时间:
2015-05-27 10:25:02
阅读次数:
152
android studio运行安卓程序的时候,安装成功之后,但是应用自动启动,必须手动启动,控制台报错:Error type 3: Activity Class {...} dose not exist
解决方法:我们需要辩解build.gradle 文件:
将:
apply plugin: 'android-library'
改为:
apply plugin: '...
分类:
其他好文 时间:
2015-05-27 10:23:23
阅读次数:
136
逃离迷宫
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 18519 Accepted Submission(s): 4463
Problem Description
给定一个m × n (m行, n列)的迷宫,...
分类:
其他好文 时间:
2015-05-27 10:23:40
阅读次数:
141
/*
* @implemented
来看一下跟中断对象有关的两个对象:
typedef struct _IO_INTERRUPT
{
KINTERRUPT FirstInterrupt;
PKINTERRUPT Interrupt[MAXIMUM_PROCESSORS];
KSPIN_LOCK SpinLock;
} IO_INTERRUPT, *PIO_INTERR...
分类:
其他好文 时间:
2015-05-27 10:24:14
阅读次数:
263
【题目】用两个栈实现一个队列,分别完成在队列尾部插入结点和在队列头部删除结点的功能。【分析】假设两个栈,栈1和栈2,来实现队列,栈1用来入队,栈2用来出队。
入队时,将元素全部压入栈1;
出队时,如果栈2不为空,就直接pop栈2,否则,就将栈1的所有元素pop到栈1里,再把栈2栈顶弹出。
由图所示,abcdef依次入队,压栈,出队时先将元素从s1弹出,压入s2,从s2出栈实现出队,即使后面再有...
分类:
其他好文 时间:
2015-05-27 10:23:41
阅读次数:
166
Alarm的简单使用MainActivity.java代码如下: import java.util.Calendar;import android.app.Activity;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.TimePickerDialog;
import...
分类:
其他好文 时间:
2015-05-27 10:24:09
阅读次数:
157
/*******************行逻辑链接的顺序表*****************/
#include
#include
#include
using namespace std;
#define MAXSIZE 12500 /// 假设非零元个数最大值为12500
#define MAXRC 12500 ///假设的每行的个数的最大值12500
#define ERROR...
分类:
其他好文 时间:
2015-05-27 10:21:37
阅读次数:
113
Problem Description
Given n integers.
You have two operations:
U A B: replace the Ath number by B. (index counting from 0)
Q A B: output the length of the longest consecutive increasing subseque...
分类:
其他好文 时间:
2015-05-27 10:22:54
阅读次数:
174
StringBuffer1、StringBuffer 和 String 并无直接关系
2、StringBuffer 避免了Sring内容改变时产生垃圾的现象。
3、一个StringBuffer对象可以调用toString()方法转换为String对象。
下面通过一个小例子演示StringBuffer类的相关方法:package StringBuffer;
public class String...
分类:
编程语言 时间:
2015-05-27 10:22:37
阅读次数:
157
Problem Description
Now you get a number N, and a M-integers set, you should find out how many integers which are small than N, that they can divided exactly by any integers in the set. For example,...
分类:
其他好文 时间:
2015-05-27 10:22:22
阅读次数:
119
Heritage from father
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 131070/65535K (Java/Other)
Total Submission(s) : 71 Accepted Submission(s) : 18
Font: Times New Roman | Verdana | Geor...
分类:
其他好文 时间:
2015-05-27 10:23:12
阅读次数:
154
// NSString* timeStr = [self stringWithDate: [NSDate dateWithTimeIntervalSince1970:userGifGrouptEntity.lastGiftSentTime / 1000]]
- (NSString *)stringWithDate:(NSDate *)date {
if (date == n...
分类:
移动开发 时间:
2015-05-27 10:22:44
阅读次数:
158