码迷,mamicode.com
首页 >  
搜索关键字:b - bear and three m    ( 2708个结果
欧拉计划(python) problem 9
Special Pythagorean triplet Problem 9 A Pythagorean triplet is a set of three natural numbers, a b c, for which, a2 + b2 = c2 For example, 32 + 42 = 9 + 16 = 25 = 52. There exists exact...
分类:编程语言   时间:2015-01-27 09:32:08    阅读次数:181
1001. A+B Format
Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits). Input Each input file cont...
分类:其他好文   时间:2015-01-26 22:54:20    阅读次数:196
cf B Three matrices
1 #include 2 #include 3 #include 4 using namespace std; 5 6 int g[200][200]; 7 int n; 8 9 int main()10 {11 while(scanf("%d",&n)!=EOF)12 ...
分类:其他好文   时间:2015-01-26 20:45:50    阅读次数:194
three.js 源码注释(六十八)extras/geometries/BoxGeometry.js
BoxGeometry用来在三维空间内创建一个立方体盒子对象. 用法: var geometry = new THREE.BoxGeometry(1,1,1); var material = new THREE.MeshBasicMaterial({color: 0x00ff00}); var cube = new THREE.Mesh(geometry,material); scene.add(cube); BoxGeometry <p...
分类:Web程序   时间:2015-01-26 15:11:12    阅读次数:193
three.js 源码注释(七十)extras/geometries/CubeGeometry.js
CubeGeometry用来在三维空间内创建一个立方体盒子对象.被BoxGeometry对象替换. 用法: var geometry = new THREE.BoxGeometry(1,1,1); var material = new THREE.MeshBasicMaterial({color: 0x00ff00}); var cube = new THREE.Mesh(geometry,material); scene.add(cube); CubeGe...
分类:Web程序   时间:2015-01-26 15:10:23    阅读次数:3541
three.js 源码注释(六十九)extras/geometries/CircleGeometry.js
CircleGeometry用来在三维空间内创建一个圆形对象,因为圆形对象是由参数segments指定的一个个三角形围绕圆心拼接而成,所以也可以是多边形对象. 用法: var radius = 5, segments = 32; var geometry = new THREE.CircleGeometry(radius,segments); var material = new THREE.MeshBasicMaterial({color: 0x00ff00}); var c...
分类:Web程序   时间:2015-01-26 15:08:54    阅读次数:221
hdu 3199 Hamming Problem(构造?枚举?)
题意:For each three prime numbers p1, p2 and p3, let's define Hamming sequence Hi(p1, p2, p3), i=1, ... as containing in increasing order all the natura...
分类:其他好文   时间:2015-01-24 23:59:24    阅读次数:305
加州理工学院公开课:机器学习与数据挖掘_Three Learning Principles(第十七课)
这一节课主要讲述机器学习中应该注意的事项,包括:Occam's Razor、Sampling Bias、Data Snooping....
分类:其他好文   时间:2015-01-24 17:23:34    阅读次数:328
UVa 12502 - Three Families
题目:有三个家庭ABC清理一个花园,每个家庭清理的速度相同,C家庭出去度假,只有AB两个家庭清理;             A家庭清理x小时,B家庭清理y小时,C家庭回来支付了z元,问A家庭得到多少钱。 分析:简单题。看一下样例,把花园分成3份,一共用了9个小时清理,每个家庭的前3个小时是自己的;             所以,A家庭清理了C家庭部分2小时,B家庭清理了C家庭部分1小时,所以...
分类:其他好文   时间:2015-01-24 10:15:27    阅读次数:122
【three.js详解之二】渲染器篇
本篇文章将详细讲解three.js中渲染器(renderer)的设置方法。three.js文档中渲染器的分支如下:RenderersCanvasRendererDOMRendererSVGRendererWebGLRendererWebGLRenderTargetWebGLRenderTargetC...
分类:Web程序   时间:2015-01-23 13:06:55    阅读次数:161
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!