下拉菜单Shape -> Select Shape or Void/Cavity点奇异点的边界,看到width为零的Line Segment 在Boundary层Ctrl+F5打开Color dialog对话框允许所有boundar Cavity显示下拉菜单EDIT ->DELETE ->Find选...
分类:
其他好文 时间:
2014-10-17 11:40:13
阅读次数:
2862
鼠标响应: mouseX, mouseY 鼠标的坐标----------------------------------------------void setup(){ size(300,300); smooth(); background(200);}void draw(){ fill(...
分类:
其他好文 时间:
2014-10-13 15:51:09
阅读次数:
141
CollisionTime Limit:2 Seconds Memory Limit:65536 KB Special JudgeThere's a round medal fixed on an ideal smooth table, Fancy is trying to throw some c...
分类:
其他好文 时间:
2014-10-09 20:32:37
阅读次数:
317
在Z.P. Xin, Blowup of smooth solutions to the compressible Navier-Stokesequations with compact density, 51 (1998), 229--240.中, 作者给出了可压NS的一个爆破现象. 而最近, 被...
分类:
其他好文 时间:
2014-10-02 09:46:12
阅读次数:
140
最近比较忙,好久没更新过博客。国庆第一天没回家,闲下来可以把之前就想贴上来的东西写一下。 使用过Smooth和Fuubo这两个优秀的第三方微博客户端的同学应该见过他们的主页UI,如下图: 他们把切换tabs的指示器放在了ActionBar上,这样子就把专门放tabs的那一行空间给节省...
分类:
移动开发 时间:
2014-10-01 15:14:21
阅读次数:
244
voidsetup(){size(1000,600,P3D);noFill();smooth();}voiddraw(){background(0);translate(width/2,height/2,-(width/2));rotateY(map(mouseX,0,width,-PI,PI));stroke(100);box(350);rotateX(map(mouseY,0,height,-PI,PI));stroke(150);box(200);}
分类:
其他好文 时间:
2014-09-26 00:20:38
阅读次数:
170
voidsetup(){size(200,200,P3D);noFill();smooth();}voiddraw(){background(0);translate(width/2,height/2,-(width/2));rotateY(map(mouseX,0,width,-PI,PI));stroke(100);box(150);rotateX(map(mouseY,0,height,-PI,PI));stroke(150);box(75);}
分类:
其他好文 时间:
2014-09-09 09:10:49
阅读次数:
348
floati=0;booleanf=false;floatxx,yy,zz;voidsetup(){size(200,200,P3D);noFill();smooth();frameRate(25);}voiddraw(){background(0);xx=width/2;yy=height/2;zz=-(width/2);translate(xx,yy,zz);rotateX(map(i++,0,height,-PI,PI));rotateY(map(i++,0,height,-PI,PI));stroke..
分类:
其他好文 时间:
2014-09-07 18:38:46
阅读次数:
266
1. Before expanding:
2. coding:
Smooth Animated Menu
body {
background-color: #F3F3F3;
font-family: "Lucida Grande", arial, sans-serif;
...
分类:
Web程序 时间:
2014-08-27 14:45:58
阅读次数:
251
SICP 习题1.44 要求我们实现一个平滑函数的过程,和以往一样,如果你太在意平滑函数的数学定义你就输了。简单的办法就是直奔平滑函数的要求,其实就是给我们一个不清楚细节的函数f,要求我们返回一个过程专门计算(f (+ x dx)) , (f x) , (f (- x dx))的平均值。其中dx是事先定义好的一个很小的数,比如0.001。这就比较简单了,直接实现如下:(define (smooth...
分类:
其他好文 时间:
2014-08-24 19:26:42
阅读次数:
224