Download Here is the document DynkinDiag.pdf Dynkin diagram, root system is a big mystery of my undergraduate life. Here I present three examples tha ...
分类:
其他好文 时间:
2020-01-21 00:37:09
阅读次数:
85
COMP0008 Written Java Coursework (2019/20)NOTE: Your final Moodle submission will consist of a number of parts:1. Three different versions of the “Con ...
分类:
编程语言 时间:
2020-01-20 21:19:02
阅读次数:
106
Given three integers A, B and C in [?], you are supposed to tell whether A+B>C. Input Specification: The first line of the input gives the positive nu ...
分类:
其他好文 时间:
2020-01-20 09:30:50
阅读次数:
92
var geometry = new THREE.BoxGeometry(200, 200, 200);var materialsbg = [];for (var i = 0; i < geometry.faces.length / 2; i += 1) { var material = new T ...
分类:
Web程序 时间:
2020-01-16 12:35:15
阅读次数:
342
今天在看C语言的时候看到了下面的代码(废话少说,直接上代码): #include <stdio.h> int main() {int max(); extern int A,B,C; //把外部变量A,B,C的作用域扩展到从此处开始 printf("Please enter three intege ...
分类:
编程语言 时间:
2020-01-16 12:32:45
阅读次数:
148
Python eval() 参数说明 The eval() takes three parameters: expression this string as parsed and evaluated as a Python expression globals (optional) a dicti ...
分类:
编程语言 时间:
2020-01-15 19:46:45
阅读次数:
66
three.js 是一款WebGL框架,WebGL可以让我们在canvas上实现3D效果。实现3D效果在国内来说还算是比较新的东西,可供查阅的资料也不多。这篇文章仅是一个入门篇,介绍如何绘制一个3D正方体。介绍完毕,首先奉上实现的效果图: 这就是实现的效果图,还是挺有立体感的吧? 绘制前的准备 写代 ...
分类:
Web程序 时间:
2020-01-14 23:45:27
阅读次数:
97
准备工作 1.运用three.js进行3d开发,其实和页面编程一样,首先需要在html文件中引入 "three.js" 。Three.js使用面向对象的方式来构建程序,它包含3个基本对象: 场景(scene), 相机(camera), 以及一个渲染器(renderer)。 第一步: 引入three. ...
分类:
Web程序 时间:
2020-01-14 11:27:16
阅读次数:
125
THREE.js 封装了 TextGeometry 类可以很容易地生成三维文字 TextGeometry(text : String, parameters : Object) 参数说明 text — The text that needs to be shown. (要显示的字符串) parame ...
分类:
Web程序 时间:
2020-01-14 10:00:25
阅读次数:
389
A. Three Friends "题目链接" 题目大意 给你三个数$a,b,c$,每个数可以选择向左,向右或者原地不动,求$\min \left(\left|a b\right|+\left|a c\right|+\left|b c\right|\right)的值$ 解题思路 1. 先按定义求出答 ...
分类:
其他好文 时间:
2020-01-13 19:38:05
阅读次数:
50