会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
尘陌忆缘
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2017年11月6日
API OpengGL属性函数
摘要: glutInitDisplayMode :选择颜色模式,GLUT_RGB 或 GLUT_INDEX glColor* :指定一个RGB或RGBA颜色 glIndex* :用颜色表索引指定一个颜色 glutSetColor(index, r, g, b) :将一个颜色装入一个颜色表位置 glEnabl
阅读全文
posted @ 2017-11-06 17:18 尘陌忆缘
阅读(424)
评论(0)
推荐(0)
编辑
API OpengGL几何变换函数
摘要: glTranslate* :指定平移参数 glRotate* :指定绕过原点的任意轴旋转的参数 glScale* :指定相对于坐标原点的缩放参数 glMatrixMode :为几何 - 观察变换、投影变换、纹理变换活颜色变换指定当前矩阵 glLoadMatrix*(elems) :设定当前矩阵的元素
阅读全文
posted @ 2017-11-06 17:18 尘陌忆缘
阅读(310)
评论(0)
推荐(0)
编辑
API OpenGL输出土元函数及相关子程序
摘要: gluOrtho2D : 指定二维世界坐标系统 glVertex* : 选择一坐标位置。该函数必须放在glBegin/glEnd之间 glBegin(GL_POINTS) : 绘出一个或过个点,每个都在glVertex函数中指定。该端点串最后由glEnd语句来结束。 glBegin(GL_LINES
阅读全文
posted @ 2017-11-06 17:17 尘陌忆缘
阅读(159)
评论(0)
推荐(0)
编辑
2017年10月31日
glut进行显示窗口管理(基本API)
摘要: 1、初始化语句: glutInit(&argc, argv); 2、创建带标题的窗口:glutCreateWindow(); 3、将线段显示到窗口:glutDisplayFunc(lineSegment); 4、 激活显示窗口和图形: glutMainLoop(); 5、显示窗口左上角的初始位置:g
阅读全文
posted @ 2017-10-31 10:41 尘陌忆缘
阅读(854)
评论(0)
推荐(0)
编辑
2013年12月13日
BLL层
摘要: /** 创建人:张良伟* 创建时间:2013-12-11 11:31* 说明:新闻类别表的业务类* 版权所有:张良伟&www.tg029.com(众志网)*/using System;using System.Collections.Generic;using System.Linq;using System.Text;using DAL;using Model;using System.Data;using System.Data.SqlClient;namespace BLL{ public class CategoryManager { private CategoryDAO c
阅读全文
posted @ 2013-12-13 18:47 尘陌忆缘
阅读(292)
评论(0)
推荐(0)
编辑
2013年12月10日
新闻表存贮过程
摘要: USE [newssystem]GO/****** Object: StoredProcedure [dbo].[news_delete] Script Date: 2013/12/10 22:18:29 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO-- =============================================-- Author:张良伟-- Create date: 2013-12-10 19:30-- Description:删除新闻-- ==============================
阅读全文
posted @ 2013-12-10 22:23 尘陌忆缘
阅读(139)
评论(0)
推荐(0)
编辑
重构的数据库助手类
摘要: /** 创建人:张良伟* 创建时间:2013-12-10 19:00* 说明:数据库助手类* 版权所有:张良伟&www.tg029.com(众志网)*/using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;using System.Configuration;namespace DAL{ public class SQLHelper { private SqlConnection con
阅读全文
posted @ 2013-12-10 22:17 尘陌忆缘
阅读(126)
评论(0)
推荐(0)
编辑
新闻表操作类
摘要: /** 创建人:张良伟* 创建时间:2013-12-10 1:00* 说明:新闻表操作类* 版权所有:张良伟&www.tg029.com(众志网)*/using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;using Model;namespace DAL{ public class NewsDAO { private SQLHelper sqlhelper; public NewsDAO
阅读全文
posted @ 2013-12-10 22:16 尘陌忆缘
阅读(204)
评论(0)
推荐(0)
编辑
新闻评论实体类及评论表操作类
摘要: /* * 作者:张良伟* 创建时间:2013-12-10 10:00* 类说明:新闻评论实体类*/ namespace Model{ /// /// 新闻评论实体类 /// public class Comment { private string id; /// /// 主键,自增 /// public string Id { get { return id; } set { id = value; } } private string content; /// /// 评论内容 /// public string Content { get { return content; ...
阅读全文
posted @ 2013-12-10 22:14 尘陌忆缘
阅读(195)
评论(0)
推荐(0)
编辑