-
The-Grand-Design
这是一部伟大的书籍.这是英国着名物理学家霍金与美国物理学家姆罗迪诺(Mlodinow)联合撰写的书籍。在书中,霍金否认了宇宙是上帝创造的自我言论.给人以深思.(This is a great books. This is England with the physicist Stephen Hawking s American physicists Mlodinow LuoDiNuo (written) combined with books. In the book, hawking denied that the universe is god created self remarks. Give a person with thinking.
)
- 2011-05-08 12:04:13下载
- 积分:1
-
jisuanqi
计算器,可进行四则运算,并且有符号位,退格,以及小数点。(Calculator, can be carried out in four operations, and the sign bit, backspace, and decimal point.)
- 2013-11-11 12:51:12下载
- 积分:1
-
learun.framework7.0━ .net?单位管理模块.docx
learun敏捷开发框架.net单位管理模块界面实现方式(Learun agile development framework.Net unit management module interface implementation mode)
- 2018-10-18 16:38:33下载
- 积分:1
-
VNCMD分解源程序Codes of the VNCMD
VNCMD分解源程序,未做更改,VMD的拓展研究参考(Source Code for VNCMD)
- 2020-07-09 11:38:55下载
- 积分:1
-
baidutianqi
An Android weather project source code, using the API provided by Baidu, has the basic functions of weather query, city settings, Short Message Sharing weather, the interface is refreshing, but now because of Baidu key failure, can not update the weather. The code has more detailed comments. Code volume is not large, interested friends can check it by themselves.
- 2020-06-24 11:40:02下载
- 积分:1
-
一个基于LABVIEW的万用表的程序,模拟4046的,您参考一下吧。
一个基于LABVIEW的万用表的程序,模拟4046的,您参考一下吧。-LABVIEW-based procedures for the multimeter, analog 4046, you refer to it.
- 2022-06-17 15:31:25下载
- 积分:1
-
又一个经典的贪吃蛇游戏,用鼠标控制蛇移动的方向.
又一个经典的贪吃蛇游戏,用鼠标控制蛇移动的方向.-also a classic Snake game with mouse control snake moving in the direction.
- 2022-02-25 05:12:57下载
- 积分:1
-
fengjidelizimoxing
说明: 风机并网模型的搭建对于研究双馈风机有所帮助仅供参考,学习(The construction of the wind turbine grid-connected model is helpful for studying the double-fed fan.)
- 2019-09-23 11:54:45下载
- 积分:1
-
SmartAntenna
说明: 适用于刚接触相控阵的初学者,关于相控阵波束形成的基本方向图,以及波束的基本参量对归一化方向图的作用等方面进行的实验仿真图,简单分析了相关因素对光束质量地影响。(It is suitable for beginners who are just in contact with phased arrays. It is an experimental simulation diagram on the basic pattern of phased array beamforming and the effect of the basic parameters of the beam on the normalized pattern. It simply analyzes the relevant factors on the beam. Quality impact.)
- 2020-06-26 22:40:01下载
- 积分:1
-
Java绘图:绘制虚线与实线
Java绘图:绘制虚线与实线
public LineDemo(){
super("实线与虚线"); //调用父类构造函数
setSize(300,200); //设置窗口尺寸
setVisible(true); //设置窗口可视
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //关闭窗口时退出程序
}
public void paint(Graphics g){ //绘制组件方法
Graphics2D g2=(Graphics2D)g; //得到2D图形
Dimension dim = this.getSize(); //得到组件尺寸
g2.setColor(Color.white); //设置绘制颜色为白色
g2.fillRect(0, 0, dim.width, dim.height); //填充整个组件
g2.setColor(Color.black); //设置绘制颜色
g2.drawLine(40,160,280,160); //绘制实线
g2.drawLine(40,160,40,40);
g2.drawString("0",30,165); //绘制字符串
g2.drawString("100",16,50);
g2.drawString("200",270,175);
float[] dash={5,5}; //短划线图案
BasicStroke bs = new BasicStroke(1,BasicStroke.CAP_BUTT,BasicStroke.JOIN_MITER, 10.0f,dash,0.0f); //实例化新画刷
g2.setStroke(bs); //设置新的画刷
g2.drawLine(40,160,100,120); //用新的画刷绘制虚线
- 2022-01-28 07:52:17下载
- 积分:1