Rendering:

http://www.cnblogs.com/miloyip/archive/2010/03/29/1698953.html

http://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-shading/reflection-refraction-fresnel

http://www.opengpu.org/forum.php?mod=viewthread&tid=4148

http://blog.ivank.net/

http://www.kevinbeason.com/smallpt/

http://15462.courses.cs.cmu.edu/fall2015/

Geometric :

https://www.geometrictools.com/Source/NumericalMethods.html

DL:

http://speech.ee.ntu.edu.tw/~tlkagk/courses_MLDS17.html

https://pan.baidu.com/share/link?shareid=3333475857&uk=2874918464

LA:

http://open.163.com/special/opencourse/daishu.html

http://ocw.aca.ntu.edu.tw/ntu-ocw/ocw/cou/101S130

More classes by me:

Katana

Qt/PyQt

CIS:

Syllabus - CIS   :
Date Topics Supplementary Files PDF Slides HW Due
// Course Overview
// Recitation: C++ Part I PDF
// Labor Day (No class)
// Transformations + Linear Algebra
<-- Requires browser config
HW0
// Recitation: Transformations and C++
//
C++ Part II (Polymorphism, Static, Virtual, etc.)
PDF
// Scene Graphs PDF HW1
// Recitation: Debugging, Qt GUIs GUI Demo
ADD DEADLINE
// Rasterization I, Color PDF
//
Virtual Cameras and Spatial Transformations
PDF HW2
// Recitation: Git
// 3D Rasterization Topics
// OpenGL Pipeline, VBOs, and Shaders
// Recitation: OpenGL HW3
//
Procedural Color, Surface Reflection Models
// Procedural Noise Functions HW4
// FALL BREAK
DROP DEADLINE
// Review
// Midterm
// Recitation: Midterm Recap
// Mesh Data Structures
//
Subdivision Techniques and Mesh Operations
HW5
// Recitation
// Modern C++ Features
// Skeletons and Skinning HW6
// Recitation
// Rays and Ray Marching
//
Shaders Review and Acceleration Structures
HW7
// Recitation
// Game Engine Paradigms
// OpenGL Texturing HW8
//
Recitation: Advanced Git (Branching, merge conflicts)
WITHDRAW DEADLINE
//
//
// Recitation
// Milestone Presentations I FP Milestone
// Friday schedule
// THANKSGIVING BREAK
//
//
// Recitation
// Milestone Presentations II FP Milestone
//
// Recitation
//
Mini Minecraft Presentations, Last day of classes
Final Project
// Final Exam Review
// FINAL EXAM: : - : Location: TBD

Samples topic的更多相关文章

  1. SharePoint 101 Code Samples are now available

    The Microsoft Office Developer Center has created 101 code samples for SharePoint 2010. These sample ...

  2. 解决kafka集群由于默认的__consumer_offsets这个topic的默认的副本数为1而存在的单点故障问题

    抛出问题: __consumer_offsets这个topic是由kafka自动创建的,默认50个,但是都存在一台kafka服务器上,这是不是就存在很明显的单点故障?经测试,如果将存储consumer ...

  3. [转]Visual F# Samples and Walkthroughs

    本文转自:http://msdn.microsoft.com/en-US/library/vstudio/ee241126.aspx This topic provides links to samp ...

  4. Kafka 如何读取offset topic内容 (__consumer_offsets)

    众所周知,由于Zookeeper并不适合大批量的频繁写入操作,新版Kafka已推荐将consumer的位移信息保存在Kafka内部的topic中,即__consumer_offsets topic,并 ...

  5. Kafka如何创建topic?

    Kafka创建topic命令很简单,一条命令足矣:bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-facto ...

  6. Kafka0.8.2.1删除topic逻辑

    前提条件: 在启动broker时候开启删除topic的开关,即在server.properties中添加:  delete.topic.enable=true 命令: bin/kafka-topics ...

  7. 【转】Android SDK Samples,学习Android的好方法

    转载地址:http://blog.csdn.net/rowland001/article/details/50886288 从今天开始呢,我要开始学习Google家自己出的Android代码示例,总觉 ...

  8. [bigdata] kafka基本命令 -- 迁移topic partition到指定的broker

    版本 0.9.2 创建topic bin/kafka-topics.sh --create --topic topic_name --partition 6 --replication-factor ...

  9. Kafka vs RocketMQ——多Topic对性能稳定性的影响-转自阿里中间件

    引言 上期我们对比了RocketMQ和Kafka在多Topic场景下,收发消息的对比测试,RocketMQ表现稳定,而Kafka的TPS在64个Topic时可以保持13万,到了128个Topic就跌至 ...

随机推荐

  1. day-01(html)

    本文档并非个人所写,只是方便自己参考: 案例1-网站信息展示需求: 在页面展示一些文字信息,需要排版技术分析: html:超文本标签语言////////////////////html: 作用:展示 ...

  2. awk 处理文本:行转列,列转行

    [root@centos ~]# cat f 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 51 2 3 4 5 awk '{for(i=1;i<=NF;i++)a ...

  3. JavaScript深度克隆(递归)

    今天在深度理解JQuery源码时,剖析extend时: jQuery.extend = jQuery.fn.extend = function() { //... } 感觉该方法的一部分功能与深度克隆 ...

  4. Python绘制wav文件音频图(静态)[matplotlib/wave]

    #!/usr/bin/env python # -*- coding: utf-8 -*- """ 绘制波形图 plottingWaveform.py "&qu ...

  5. java中变量关系

  6. 063、如何使用weave网络(2019-04-03 周三)

    参考https://www.cnblogs.com/CloudMan6/p/7471162.html   weave是Weaveworks开发的容器网络解决方案.weave创建的虚拟网络可以将部署在多 ...

  7. 二十七、Linux 进程与信号---进程组和组长进程

    27.1 进程组 27.1.1 进程组介绍 进程组为一个或多个进程的集合 进程组可以接受同一终端的各种信号,同一个信号发送进程组等于发送给组中的所有进程 每个进程组有唯一的进程组 ID 进程组的消亡要 ...

  8. mssql 创建存储过程简单实例

    CREATE procedure [dbo].[cp_User_Increment] @channelId int, @currentPage int, @pageSize int, @userId ...

  9. Hadoop之YARN思维导图

  10. NLTK1及NLP理论基础

    以下为Aron老师课程笔记 一.NLTK安装 1. 安装nltk https://pypi.python.org/pypi/nltk 把nltk-3.0.0解压到D:\Anacond3目录 打开cmd ...