方法一:
为 PowerShell 设置代理,命令如下:
$Env:http_proxy="http://127.0.0.1:7890";
$Env:https_proxy="http://127.0.0.1:7890";
这是临时命令,重新代理终端需要重新输入
如果想要永久设置代理,建议使用自定义配置,使每次代理 PowerShell 窗口时,运行如上命令:
在 PowerShell 窗口中运行如下指令:
方法一:
为 PowerShell 设置代理,命令如下:
$Env:http_proxy="http://127.0.0.1:7890";
$Env:https_proxy="http://127.0.0.1:7890";
这是临时命令,重新代理终端需要重新输入
如果想要永久设置代理,建议使用自定义配置,使每次代理 PowerShell 窗口时,运行如上命令:
在 PowerShell 窗口中运行如下指令:
// A header file to get you set going with Intel SIMD instrinsic programming. | |
// All necessary header files are inlucded for SSE2, SSE41, and AVX2 | |
// Macros make the intrinsics easier to read and generic so you can compile to | |
// SSE2 or AVX2 with the flip of a #define | |
#define SSE2 //indicates we want SSE2 | |
#define SSE41 //indicates we want SSE4.1 instructions (floor and blend is available) | |
#define AVX2 //indicates we want AVX2 instructions (double speed!) |
The GCC distributed with CentOS 6 is 4.4.7, which is pretty outdated. I'd like to use gcc 4.8+. Also, when trying to install Linuxbrew you run into a dependency loop where Homebrew's gcc depends on zlib, which depends on gcc. Here's how I solved the problem.
Note: Requires sudo
privileges.
Below I collected relevant links and papers more or less pertaining to the subject of tetrahedral meshes. | |
It's an ever-growing list. | |
------------------------------ | |
Relevant links: | |
http://en.wikipedia.org/wiki/Types_of_mesh | |
http://en.wikipedia.org/wiki/Tetrahedron | |
http://en.wikipedia.org/wiki/Simplicial_complex |
301 https://github.com/zxdrive/imouto.host |
//using Eigen's SVD to fastly compute the rigid transformation between two point clouds. | |
#include <iostream> | |
#include <ctime> | |
#include <Eigen/SVD> | |
#include <Eigen/Dense> | |
#include <Eigen/Sparse> | |
#include <Eigen/Geometry> | |
using namespace Eigen; |