three.js 源码注释(七)Math/Euler.js
/*
///Euler对象的构造函数.用来创建一个欧拉角的对象.Euler对象的功能函数采用
///定义构造的函数原型对象来实现.
///
/// 用法: var euler = new Euler(5,3,2,'XYZ')
/// 创建一个绕某轴旋转5度,绕y轴旋转某度,绕某轴旋转2度,旋转顺序为'XYZ'.有了旋转顺序才能确定每个x,y,z轴分别旋转多少度.
/// NOTE: 参数x,y,z代表3个轴的旋转角度,具体哪个轴旋转多少度,需要后...
分类:
Web程序 时间:
2014-10-27 14:28:11
阅读次数:
237
链接:http://poj.org/problem?id=2284
题意:一个自动画图的机器在纸上(无限大)画图,笔尖从不离开纸,有n个指令,每个指令是一个坐标,因为笔尖不离开纸,所以相邻的坐标会连有一条直线,最后画笔再回到起始点。所以这个图是一个连通图,并且画笔走过的路径是一个欧拉回路。现在问题来了,这个图形将平面分成了几部分。
思路:题目说明白一些就是告诉你一些几何信息问平面被分成...
分类:
其他好文 时间:
2014-10-23 14:32:59
阅读次数:
133
第二个故事的主角是欧拉(Euler),拉普拉斯(Lapalace),勒让德(Legendre)和高斯(Gauss),故事发生的时间是十八世纪中到十九世纪初。十七、十八世纪是科学发展的黄金年代,微积分的发展和牛顿万有引力定律的建立,直接的推动了天文学和测地学的迅猛发展。当时的大科学家们都在考虑许多天文...
分类:
其他好文 时间:
2014-10-22 21:51:13
阅读次数:
285
# This Python file uses the following encoding: utf-8# Starting in the top left corner of a 2×2 grid, and only being able to move to the right and dow...
分类:
编程语言 时间:
2014-10-22 08:43:00
阅读次数:
139
# This Python file uses the following encoding: utf-8# The Fibonacci sequence is defined by the recurrence relation:# Fn = Fn?1 + Fn?2, where F1 = 1 a...
分类:
编程语言 时间:
2014-10-21 23:10:42
阅读次数:
204
# This Python file uses the following encoding: utf-8# 215 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.# What is the sum of the digits...
分类:
编程语言 时间:
2014-10-21 23:07:02
阅读次数:
203
欧拉定理:P+F-E=2
That Nice Euler Circuit
Time Limit: 3000MS
Memory Limit: Unknown
64bit IO Format: %lld & %llu
Submit Status
Description
Little Joey inve...
分类:
其他好文 时间:
2014-10-21 13:51:41
阅读次数:
253
# This Python file uses the following encoding: utf-8# The following iterative sequence is defined for the set of positive integers:# n → n/2 (n is ev...
分类:
编程语言 时间:
2014-10-20 09:52:55
阅读次数:
218
# The series, 11 + 22 + 33 + ... + 1010 = 10405071317.# Find the last ten digits of the series, 11 + 22 + 33 + ... + 10001000.import timestart = time....
分类:
编程语言 时间:
2014-10-19 21:24:41
阅读次数:
243
# This python file uses the following encoding: utf-8# Consider all integer combinations of ab for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5:# 22=4, 23=8, 24=16, 25=32#...
分类:
编程语言 时间:
2014-10-19 21:23:27
阅读次数:
152