摘要: ‍ 1:向量相等 几何学上,有同样方向和长度的两个向量相等。数学上,我们说有同样维数和分量的向量相等。例如:如果ux = vx, uy = vy, 且 uz = vz.那么(ux, uy, uz) = (vx, vy, vz)。在代码中我们能够用“= =”判断两个向量相等。 2:向量模长 向量的大小是有向线段的长度。知道向量的分量,利用下面的公式就能计算出向量的大小。 ‖u‖表示向量u的长度... 阅读全文
posted @ 2010-12-03 20:58 lcxu2 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 前 言以前是用VC 作计算机图形学的,大约在一年前,公司接到一个用C#+DirecX的项目,从那时起便开始学习Mangaged DirectX ,现将在开发过程中的一点总结发表出来,和同行们共同参考,共同学习,共同进步,前面是一些基础内容,算是入门篇吧,现在正将开发过程中所用到的一些算法整理中,算是中级篇吧。1:在整理过程中,有些内容为从网上找的资料,部分为翻译国外文章,正所谓“天下文章... 阅读全文
posted @ 2010-12-03 20:55 lcxu2 阅读(823) 评论(1) 推荐(0) 编辑
摘要: http://kelynt.blog.163.com/blog/static/2375131220078150209323/ 阅读全文
posted @ 2010-11-30 22:12 lcxu2 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 是一个非常优秀的开源的作图控件ZedGraph来 源:http://sourceforge.net/project/showfiles.php?group_id=114675ZedGraph相关例子资源:http://zedgraph.org/wiki /index.php?title=Sample_Graphs1、在vs中使用ZedGraph2、 基本一些概念几个注意点:图片的保存路径设置:RenderedImagePath属性中设置,程序对该文件夹应该是有写 和修改权限的图片的输出格式:OutputFormat属性中设置,Png的推荐,比较清晰。Chart ChartBorder 图 表区 阅读全文
posted @ 2010-11-30 22:03 lcxu2 阅读(601) 评论(0) 推荐(0) 编辑
摘要: http://download.csdn.net/source/2149389很不错的东西‍ 阅读全文
posted @ 2010-11-30 02:22 lcxu2 阅读(420) 评论(0) 推荐(0) 编辑
摘要: This DirectX SDK release contains updates to tools, utilities, samples, documentation, and runtime debug files for x64 and x86 platforms. For additional information please see Microsoft DirectX Developer Center along with reviewing the Readme for last-minute updates.Users wishing to install the Dire 阅读全文
posted @ 2010-11-29 04:53 lcxu2 阅读(11257) 评论(0) 推荐(1) 编辑
摘要: C#的ToString可以接受格式字符串作为参数‍ 比如 1.ToString("00000000")输出的结果就是 "00000001" ‍1.ToString("N8")结果是 "1.00000000" 阅读全文
posted @ 2010-11-28 20:35 lcxu2 阅读(560) 评论(0) 推荐(0) 编辑
摘要: It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of ... 阅读全文
posted @ 2010-11-28 07:42 lcxu2 阅读(843) 评论(0) 推荐(0) 编辑
摘要: http://chenwenguang32.blog.163.com/blog/static/52457472200852705819936/ 阅读全文
posted @ 2010-11-27 00:49 lcxu2 阅读(111) 评论(0) 推荐(0) 编辑
摘要: ZedGraph控件的使用在我们编写程序的时候,有时候是要做一些统计的,为了达到一目了然的效果,饼状图,曲线图,柱状图都是很好的表现统计的直观形式。这个时候,ZedGraph控件给我们带来了极大的方便。1.下载ZedGraph.dll2.在项目中引用这个控件 (: 首先,在项目解决方案里添加,然后在工具箱中点击右键,选择项,COM,浏览,打开,我们就 会在工具箱的最下方发现这个控件了,确定。然后就... 阅读全文
posted @ 2010-11-27 00:26 lcxu2 阅读(947) 评论(0) 推荐(0) 编辑