最新 最热

linux 权限详解rwx[通俗易懂]

第2~10个字符当中的每3个为一组,左边三个字符表示所有者权限,中间3个字符表示与所有者同一组的用户的权限,右边3个字符是其他用户的权限。这三个一组共9个字符,代表的意义如下: r(Read,读取):对文件而言,具有读取文件内容的权...

2022-09-05
1

Linear Search

You are given a sequence of n integers S and a sequence of different q integers T. Write a program which outputs C, the number of integers in T which are also i...

2022-09-05
0

Exhaustive Search

Write a program which reads a sequence A of n elements and an integer M, and outputs “yes” if you can make M by adding elements in A, otherwise “no”. You can us...

2022-09-05
1

Koch Curve

Write a program which reads an integer n and draws a Koch curve based on recursive calles of depth n.

2022-09-05
1

05-树8 File Transfer

We have a network of computers and a list of bi-directional connections. Each of these connections a

2022-09-05
1

python的random模块

#用于生成一个指定范围内的随机符点数,两个参数其中一个是上限,一个是下限。如果a > b,则生成的随机数n: a <= n <= b。如果 a <b, 则 b <= n <= a。...

2022-09-04
0

ValueError: num_samples should be a positive integer value, but got num_samp=0

跑baseline调试代码时遇到了一些问题,当时报了错,反复找不到原因,后来受到了下面这篇博客的启发终于解决了问题,我就将这个问题再总结一下:

2022-09-02
1

Unity Shader Graph 制作 Fade 淡入淡出效果

当相机与物体的距离越来越近,达到指定值时,我们让物体逐渐淡出,当相机与物体拉开距离后,再让其淡入,来处理当相机靠近物体时的穿模情况,效果图:...

2022-08-29
1

Unity Shader Graph 制作Rim Light边缘光效果

通过法线方向和视线方向的夹角来判断点是否处于边缘,从而给其增加边缘光,视线方向和法线方向垂直时,则该点在当前视角来看处于边缘。夹角的判断需要通过向量dot点积,点积结果为0时,法线方向与视线方向垂直,则该点处于边缘,给...

2022-08-29
1

Unity Shader Graph 故障艺术

故障效果越来越多的被应用于游戏开发,将事物发生故障的现象进行加工,形成了一种新的风格。本文实现了一个手电筒的故障效果,效果图如下,模型用的是Asset Store资源商店里的免费资源SciFi HandLight Free:...

2022-08-29
1