摘要:
Quadratic Equations 二次方程 Trigonometry 三角函数 Vectors 向量 Curves and Surfaces 曲线和曲面 Linear Interpolation 线性插值 Triangles 三角形 rasterization 光栅化 raster image 阅读全文
摘要:
https://github.com/golang/go/wiki/Modules https://tonybai.com/2018/07/15/hello-go-module/ https://www.cnblogs.com/apocelipes/p/10295096.html 阅读全文
摘要:
git tag //查看tag git tag v1.0.0 c809ddbf83939a89659e51dc2a5fe183af384233 //在某个commit 上打tag git push origin v1.0.0 //push到远程 git tag -d v1.0.0 //本地删除tag git push origin :refs/tags/v1.... 阅读全文
摘要:
http://www.uml.org.cn/mobiledev/20111014.asp 阅读全文
摘要:
http://blog.csdn.net/zouxueping/article/details/6751884 阅读全文
摘要:
http://www.cnblogs.com/dwinter/archive/2012/01/30/2331556.html http://blog.csdn.net/donglinlucky/article/details/2845777 阅读全文
摘要:
android create project -k com.yzy.audioeditor -n AudioEditor -a MainActivity -t 7 -p ~/workspace/AudioEditor注:以上各参数的意义,可参考:http://developer.android.com/guide/developing/projects/projects-cmdline.html -k 工程包名: cc.unmi.android.test -n 工程名 : Hello -a Activity子类名: HelloAndroid -t 工程使用的平台 Target: 5 ( 基于A 阅读全文
摘要:
void setARGB(int a, int r, int g, int b) 设置Paint对象颜色,参数一为alpha透明通道void setAlpha(int a) 设置alpha不透明度,范围为0~255void setAntiAlias(boolean aa) //是否抗锯齿void setColor(int color) //设置颜色,这里Android内部定义的有Color类包含了一些常见颜色定义.void setFakeBoldText(boolean fakeBoldText) //设置伪粗体文本 void setLinearText(boolean... 阅读全文
摘要:
山_贼Google code android 开源项目 集合1. ZXing http://code.google.com/p/zxing/条形码、二维码2. K-9 Mail http://code.google.com/p/k9mail/邮件客户端3. Sipdroid http://code.google.com/p/sipdroid/SIP/VoIP 客户端4. Openintents http://code.google.com/p/openintents/提供了大量的应用程序,使用intent,简化开发5. L... 阅读全文
摘要:
/************************************************************************* * Compilation: javac FFT.java * Execution: java FFT N * Dependencies: Complex.java * * Compute the FFT and inverse FFT of a length N complex sequence. * Bare bones implementation that runs in O(N log N) time. Our goa... 阅读全文