今天是 5 月 20 日,一個多少會顯得有些特殊的日子,在這一天,你打算如何度過,又能夠如何利用你的專業或者興趣特長「有創意」地表達 520 呢?比如寫段代碼、唱首歌、來段詩朗誦、搭一個小模型......等等等等,沒有限制,來發揮你的腦洞吧!

本題已加入活動圓桌開拍吧!我的校園劇,反轉鏡頭,拍出你的專屬青春。

備註:作為活動暗號,視頻回答開頭請註明「謝邀 ,開拍吧,我的校園劇」。


謝邀 ,開拍吧,我的校園劇

我來用《我的世界》給大家來畫畫。

給大家畫一個充滿愛心的畫。

520MC裡面給你發愛心棒棒糖大晨的視頻 · 3785 播放

我看樓上也學著畫畫,這個是非常簡單的,我又畫了個,大家也可以一起來。


用中東語言表示「我愛你」

一、阿拉伯語(Arabic)

對女性

?U?ibbuki.

對男性

?U?ibbuka.

二、希伯來語(Hebrew)

男性對女性

????? ?????? ???????.

?Ani?ohev?otakh.

女性對男性

????? ???????? ???????.

?Ani?ohevet?otkha.

男性對男性

????? ?????? ???????.

?Ani?ohev?otkha.

女性對女性

????? ???????? ???????.

?Ani?ohevet?otakh.

三、敘利亞語東部方言(East Syriac)

男性對女性

???????? ?????

Rā?emnā lēkh[i]

女性對男性

???????? ????

Rā?mānā lākh

男性對男性

???????? ????

Rā?emnā lākh

女性對女性

???????? ?????

Rā?emnā lēkh[i]

四、敘利亞語西部方言(West Syriac)

男性對女性

???????? ?????

Ro?emno lekh[i].

女性對男性

???????? ????

Ro?mono lokh.

男性對男性

???????? ????

Ro?emno lokh.

女性對女性

???????? ?????

Ro?mono lekh[i].

五、波斯語(Persian)

Torā dāst dāram.

六、庫爾德語(Kurdish)

Tom khosh dawet.

七、土耳其語(Turkish)

Seni seviyorum.


謝邀 ,開拍吧,我的校園劇

醫學生的三行情書,了解一下(?˙ー˙?)

醫學生的三行情書逍遙散人的視頻 · 3278 播放

「謝邀,開拍吧,我的校園劇」

如果我的心是x軸

那你就是開口向上

為負的拋物線

永遠都在我的心上

我是sin,你是cos,不求平方和,只求tan。

9對3說,除了你,還是你。

我是1,你是0。我們相加是我,我們相乘是你。

我們的心就像一個圓,因為它的離心率永遠是零。

有了你,我的世界才有無窮大。因為任何實數,都無法表達,我對你深深的愛。


#謝邀,開拍吧,我的校園劇

求代碼的我來滿足你們啦,看下文

matlab弄了幾個愛心

2020520

第一個圖

[X,Y,Z]=meshgrid(linspace(-1.3,1.3));

val=(X.^2+(9/4)*Y.^2+Z.^2-1).^3-X.^2.*Z.^3-(9/80)*Y.^2.*Z.^3;

isosurface(X,Y,Z,val,0)axis equalview(-10,24)colormap flagcamlightlighting phong

第二個圖

theta=0:0.01*pi:2*pi;

a=2;r=a*(1-sin(theta));

h0=polar(theta,r,r);

set(h0,LineWidth,6);

第三個圖

h0=ezplot(17*x^2-16*abs(x)*y+17*y^2-225);

set(h0,color,r,LineWidth,6);

第四個動圖

% Initialize the volume data, figure, and axes:

[X,Y,Z] = meshgrid(linspace(-3,3,101));

F = -X.^2.*Z.^3-(9/80).*Y.^2.*Z.^3+(X.^2+(9/4).*Y.^2+Z.^2-1).^3;

hFigure = figure;

sz = get(hFigure, Position);

set(hFigure, Position, [sz(1)-0.15*sz(3) sz(2) 1.3*sz(3) sz(4)]);

set(hFigure,color,w, menu,none)

hAxes = axes(Parent,hFigure,NextPlot,add,...

DataAspectRatio,[1 1 1],...

XLim,[30 120],YLim,[35 65],ZLim,[30 75]);

view([-39 30]);

axis off

% hidden surface removal

hidden on

% Fill the inside of the mesh with an isosurface to

% block rendering of the back side of the heart

p = patch(isosurface(F,-0.001));

set(p,FaceColor,w,EdgeColor,none);

% Create and plot contours in the y-z plane:

for iX = [35 38 41 45 48 51 54 57 61 64 67]

plane = reshape(F(:,iX,:),101,101);

cData = contourc(plane,[0 0]);

xData = iX.*ones(1,cData(2,1));

h3=plot3(hAxes,xData,cData(2,2:end),cData(1,2:end),k);

set(h3,color,r);

pause(.1), drawnow

end

% Create and plot contours in the x-z plane:

for iY = [41 44 47 51 55 58 61]

plane = reshape(F(iY,:,:),101,101);

cData = contourc(plane,[0 0]);

yData = iY.*ones(1,cData(2,1));

h4=plot3(hAxes,cData(2,2:end),yData,cData(1,2:end),k);

set(h4,color,r);

pause(.1), drawnow

end

% Create and plot contours in the x-y plane:

for iZ = [36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 69 71]

plane = F(:,:,iZ);

cData = contourc(plane,[0 0]);

startIndex = 1;

if size(cData,2) &> (cData(2,1)+1)

startIndex = cData(2,1)+2;

zData = iZ.*ones(1,cData(2,1));

h0=plot3(hAxes,cData(1,2:(startIndex-1)),...

cData(2,2:(startIndex-1)),zData,k);

set(h0,color,r);

end

zData = iZ.*ones(1,cData(2,startIndex));

h1=plot3(hAxes,cData(1,(startIndex+1):end),...

cData(2,(startIndex+1):end),zData,k);

set(h1,color,r);

pause(.1), drawnow

end

pause(.2)

text(7,50,70,I, color,r,fontWeight,bold,FontAngle,italic,fontsize,100)

pause(.5)

text(80,50,43,YOU,color,r ,fontWeight,bold,FontAngle,italic,fontsize,100)

pause(.2)

line([20 80],[50 50],[52.5 52.5], color,k)

line([50 50],[20 80],[52.5 52.5], color,k)

line([50 50],[50 50],[30 80], color,k)

text(20,50,50,x)

text(48,20,50,y)

text(45,50,80,z)

text(30,60,30,(x^2+9/4y^2+z^2-1)^3 - x^2z^3-9/80y^2z^3=0, fontsize,8)

text(35,45,30,-3&<3, fontsize,8)

禁止轉載關了,你們複製吧


推薦閱讀:
相关文章