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. [DUBBO] Unexpected error occur at send statistic, cause: Forbid consumer 192.168.3.151 access servic

    [DUBBO] Unexpected error occur at send statistic, cause: Forbid consumer 192.168.3.151 access servic ...

  2. 虚拟机 the image's hash and certificate are not allowed 解决方案

    根据计划,需要在虚拟机上安装一个linux系统,用作web架构学习的服务器. 公司项目的服务器用的是linux系统,具体版本未知.虽然我们开发不用关注最后的部署,但多少也接触了一些,算是有一定的了解, ...

  3. ButterKnife官方使用例子

    Introduction Annotate fields with @BindView and a view ID for Butter Knife to find and automatically ...

  4. extjs.net list 点击弹出修改页面及初始化

    <SaveMask ShowMask="true" /> <LoadMask ShowMask="true" /> <Listen ...

  5. 安装Rational Rose后提示java.lang.ClassNotFoundException

    1. 在运行中输入regedit回车,打开注册表编辑器2. 搜索 TrustedClasspath [REG_SZ] ,因为64位和32位不一样. 4.添加值c:\windows\java\trust ...

  6. Lua 函数链功能

    函数链 http://lua-users.org/wiki/FiltersSourcesAndSinks A chain is a function that combines the effect ...

  7. Docker 容器内存限制 - 八

    Docker 内存限制: centos /bin/bash  查看容器实例 内存限制: 限制容器内存大小:docker run -d -i -t -m 256M --memory-swap 512M ...

  8. Docker exec 宿主对容器执行命令 - 五

    Docker  下  exec  从宿主机对容器执行命名操作 docker exec -it # 交互可以进入容器 ; exec 也可以在宿主机对容器执行命令: docker attach # 也是可 ...

  9. Java Web之JSTL标准标签库总结

    [文档整理系列] Java Web之JSTL标准标签库总结

  10. springboot的@CrossOrigin注解解决细粒度的配置跨域

    import java.util.HashMap; import org.springframework.web.bind.annotation.CrossOrigin; import org.spr ...